I am creating a website for a client, and he wants to be able to have in one page, many upload buttons. When he clicks select files, uploadify uploads the file to the server
This code:
jQuery(".file_upload").each(function() {
jQuery(this).uploadify({
height : 30,
swf : '/uploadify/uploadify.swf',
uploader : '/script/uploadify/uploadify.php',
width : 120
});
});
works very fine.
This also requires that the ids in the .file_upload
elements are unique, even if they are not used.