I have a big table list of products, which is dynamic and changes with ajax. There is a for about 100 rows in that table.
I saw already that a contextual method $('.className', '#parentElement'); of selecting elements performs much better than usual $('.className'); or $('#parentElement .className');. (correct me if wrong)
In some circumstances i need to select a specific element with jQuery, there are dynamically added unique id="product-name-123456" and class="mainproductOffer" to each new row.
So, what performs faster from these two methods ?
$('tr[id^=product-name-]').click(function(){...});$('tr.mainproductOffer').click(function(){...});
or
Is there any other method doing the same thing faster ?
$('.mainproductOffer').on("click", handler)(jQuery v1.7+) will perform faster sinceclick()is a shortcut, which will executeon("click")(orbind("click")) anyways. – JFK Dec 27 '12 at 9:56