TAG | javascript
Try running this piece of javascript, it would throw a “URI malformed” exception. javascript:alert(decodeURIComponent(escape(’http://rushis.com/®’))); The ® character is transformed to %AE, which is not a valid input to decodeURIComponent function. This issue is clearly evident in the latest prototype js 1.6 framework. _getHeaderJSON: function() { var json = this.getHeader(’X-JSON’); if (!json) return null; json = [...]
Google Analytics has launched asynchronous tracking. What this means is that the pages load faster and the analytics piece of javascript loads without blocking the rest of page from being rendered. Earlier this was not the case, hence we had to insert the analytics script code just before the </body> tag in your pages. The [...]
I have seen people abuse, overuse, bombard the most beautiful client side language, Javascript. I am not going to discuss the Dos and Dont’s of javascript programming. This is an absolute treasure that I found, please feel compelled to liberally pass this link to all your fellow developers, friends, (Web developers). Thanks to the people [...]
Here are few javascript libraries/frameworks http://ntt.cc/2008/02/13/the-most-complete-ajax-framework-and-javascript-libraries-list.html
