I am trying to change main.js for blueimp upload files to have multiple file upload widgets on the same page. I changed id to class for form. I also changed in main.js:
$('.fileupload').each(function () {
$(this).fileupload({
dropZone: $(this)
url: 'server/php/'
});
});
$('.fileupload').each(function () {
$(this).fileupload({
dropZone: $(this)
'option',
'redirect',
window.location.href.replace(
/\/[^\/]*$/,
'/cors/result.html?%s'
)
});
});
still not working. Any idea? Thanks a lot. katarina