ajax_lover
Member since Nov 30, 2010
- Profile: /members/7384-ajax-lover.htm
- Comments: 4
Recent Blog Comments By ajax_lover
-
Experimenting With jQuery's Queue() And Dequeue() Methods
Posted on Feb 13, 2012 at 9:08 PM
Hello Ben, This is just awesome, clear and easy to follow. It helped me in a project I am doing, Your site has become an authority on Ajax coding, 2 Thumbs up from me :) Many Thanks, Nader.... read more »
-
Ask Ben: Dynamically Adding File Upload Fields To A Form Using jQuery
Posted on Mar 25, 2011 at 7:01 PM
This is useful, here is a quick way I used to do the same (no templating): function AddNewUpload(){ var jFilesContainer = $( "#files" ); var intNewFileCount = (jFilesContainer.find( "div.row" ).length + 1); if(intNewFileCount > 5) return false; var jUpload = '<d... read more »
-
Using HTML5 Offline Application Cache Events In Javascript
Posted on Dec 1, 2010 at 2:13 AM
For debugging the error (event) in Safari, I used: $( appCache ).bind( "error", function( event ){ logEvent( console.error(event) ); } ); not very helpful though.... read more »
-
Using HTML5 Offline Application Cache Events In Javascript
Posted on Nov 30, 2010 at 12:05 PM
Awesome tutorial and code ! Helped me a lot in understanding the whole "Manifest" chapter. Very well explained. Much appreciated Ben, keep them coming!... read more »