how to select multiple rows using jquery
hello everyone how to select multiple cell from table using jquery . i dont want to use any plugin fo开发者_如何学Pythonr this. i have to two tables which are dynamically generated.
try jQuery Delegate for dOM using parent selector
Description: Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.
Apply a common class to the rows, for example class="myclass"
, then in jQuery:
$("myclass").dosomething;
Make sense?
精彩评论