March 2011
4 posts
6 tags
8bit fun with jQuery and jsfiddle →
Work in progress for a simple 8bit drawing app, I love me some jQuery.
Mar 29th
2 notes
3 tags
Mar 27th
2 tags
Mar 19th
4 tags
Possible Gotcha when upgrading from jQuery 1.4.x...
In jQuery 1.5.x there was almost a complete rewrite of the ajax functionality using deferred object. One thing I noticed when upgrading was my $.post methods were failing when the result was json. $.post(url, data, function(){}, “json”); In 1.5.1 to get the functionality to work without changing much simply change the content type to “text json” $.post(url, data, function(){}, “text json”); Now...
Mar 16th
4 notes