Posts Tagged ‘javascript’

Make JQuery Go Faster!

Tuesday, April 28th, 2009

A nice article on improving your jquery codez:

http://www.artzstudio.com/2009/04/jquery-performance-rules/

Javascript: Loop through an associative array

Thursday, March 5th, 2009


for(var i in arr) {
var value = arr[i];
alert("Element "+i+" is "+value);
}