Add a Favicon to External Links →
Using JavaScript, CSS, and Google’s favicon cache.
jQuery Gantt Chart →
A client side gantt chant written in jQuery.
WebStorm 1.0 - JetBrains New Web Development IDE →
Looks like the makers of ReSharper have released a Web Development IDE. It’s also runs on windows, mac, and linux.
Navigate through files easily. Use relevant autocompletion for everything in your code. Get notified about code problems on the fly.
Prompt User to Extend the ASP.NET Session Before it Expires →
via vijay
Asynchronous method queue chaining in JavaScript →
Chaining. It’s an extremely popular pattern these days in JavaScript. It’s easily achieved by continually returning a reference to the same object between linked methods. However one technique you don’t often see is queueing up a chain of methods, asynchronously, by which functions can be linked together independent of a callback.
via dustin diaz
A MacBook Pro runs JavaScript 26.7x as fast as an iPad.
It’s one thing not to be able to run Flash apps. But JavaScript performance like this effectively means the iPad can’t run complex JavaScript apps either. Interesting.
via moonwatcher
gMap: A Google Maps Plugin for jQuery →
Display a google map with one line of javascript:
$("#map1").gMap({ markers: [{ latitude: 47.660937, longitude: 9.569803 }] });
2105:
Apple-Style Counter : Chris Nanney : JournalNicely deconstructed. Good primer for those getting into markup/semantics/data interplay in JS.
Via the always great @nathansmith’s delicious feed.
‘Interplay’. Wow, that’s a new personal low.
Pure JavaScript HTML Parser →
Have you ever needed to process invalid HTML as XML? Then Pure JavaScript HTML Parser by John Resig can help. It handels common errors like like unclosed tags, attributes without values (like checked), and empty elements (like the img tag).