> And by the way: the site is not centered on developing for/with Opera.

True. I didn't want to hijack your thread for an Opera discussion. The 
"Efficient Javascript" article is really a good read: 
http://dev.opera.com/articles/view/48/

I didn't know that this:
var s = new String('0123456789');
for( var i = 0; i < s.length; i++ ) {
  s.charAt(i);
}

then this:
var s = '0123456789';
for( var i = 0; i < s.length; i++ ) {
  s.charAt(i);
}

because of the implicit object conversion involved. There is a lot of stuff 
that could be used to improve the jQuery core performance.

--
Jörn Zaefferer

http://bassistance.de
-- 
GMX DSL-Flatrate 0,- Euro* - Überall, wo DSL verfügbar ist!
NEU: Jetzt bis zu 16.000 kBit/s! http://www.gmx.net/de/go/dsl

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to