Multiple File Upload plugin for jQuery and Cancel button
QuocKien here ask me to help him with Multiple File Upload plugin and cancel button
This the most easy way I think
it’s this simple js code (cancel button will work for second multi input file)
1 2 3 4 5 6 7 8 9 10 | $(document).ready(function(){ $(‘.multi’).MultiFile(); $(‘.multi2′).MultiFile(); $("#cancel_but").click(function() { $(".multi2").parent().find(‘span a’).each(function() { $(this).click(); }); }) }); |
where is .multi2 – it’s selector of your multi file input
simple html
1 2 3 |
I hope this help
-
http://www.qsoftvietnam.com QuocKien
