[jQuery] Re: jQuery select all vs conventional javascript

2008-11-20 Thread JQueryProgrammer
Ok got it and understood that the conventional javascript would be faster than jQuery in this case. But what I have seen is that just by pressing SHIFT+END, all the options in the listbox get selected. Is there some way we can fire that event to select all options. On Nov 20, 1:10 pm, "Michael Ge

[jQuery] Re: jQuery select all vs conventional javascript

2008-11-20 Thread Michael Geary
It's no surprise that the jQuery code is slower: you can always outperform jQuery with a custom-tuned loop. After all, jQuery has to do everything that your custom loop does, plus much more. For one thing, jQuery has to first build an array of all the items and then traverse that array. Your custo