jQuery Speed Tip of the Day
Lately I’ve become a huge fan of performance tweaks in my javascript. So this morning I decided to time some code I was writing. Quite frankly, it was just too slow. This is what I started with… $('#someDiv').find( 'dl.list:visible input[checkbox]' ); which I then converted into the following after a minute… $('#someDiv').find( 'dl.list' ) [...]
