Your Ad Here

Posted By

kashif21 on 06/30/11


Tagged

get table jquery function to checked rows and grid ids the


Versions (?)

Jquery Function to get the "Table" and "grid" checked Rows IDs


 / Published in: jQuery
 

  1. function GetUserIDS() {
  2.  
  3. $("#MainContents_ucGenieGrid1_ucGenieGrid1 tr:has(:checkbox:checked)").each(function () {
  4.  
  5. var $tds = $(this).find('td');
  6. if ($tds.length != 0) {
  7. var $currText = $tds.eq(1).text();
  8. if ($currText != "") {
  9. alert($currText);
  10. }
  11. }
  12. });
  13.  
  14.  
  15. }

Report this snippet  

You need to login to post a comment.