Archive for the ‘jQuery’ Category
Facebook friend autocomplete selector with JQueryUI
Let’s create Facebook Friend selector using JQueryUI. So we will have something like this

symfony ahDoctrineEasyEmbeddedRelations plugin, IE and Compatibility View Mode
I have found interesting bug with symfony ahDoctrineEasyEmbeddedRelations plugin when you use IE Compatibility View Mode. Always save only 2 instance and never more. So lets find why it is happen.
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
