$(function(){
var fileUpload = $('.powermail_fieldwrap_file_inner');
var buttomUpload = $('.powermail_fieldwrap_file_inner .powermail_file');
fileUpload.each(function(index,element) {
var texbox = $('<input type="text" class="powermail_field powermail_input" id="inp-'+index+'">');
$(element).prepend(texbox);
$(element).append('<input type="button" id="btn-'+index+'" value="Wählen">');
$(element).find('[type = button]').click(function() {
$(element).find('[type=file]').click();
});
$(element).find('[type="file"]').change(function(click) {
$(texbox).val(this.value);
});
});
});
Речь идёт о следующем участке кода
$(element).find('[type = button]').click(function() {
$(element).find('[type=file]').click();
});
и об этом
$(element).find('[type="file"]').change(function(click) {
$(texbox).val(this.value);
});