Closed aldwin closed 11 years ago
Try to find function progressHandlingFunction, and find this line:
obj.next('a').next('div').find('.file').first().find('.filename:first').text(file.name);
and change it to:
obj.next('a').next('div').find('.file').first().find('.filename:first').text(file.name).append('<input type="hidden" name="fileName" value="'+file.name+'">');
fileName being your variable and its value is ready to pass into your PHP (or whatever) script.
that worked :D thank you very much
any simple example or explanation will do.
hope someone can help me on this. thanks.