/ Published in: jQuery
Expand |
Embed | Plain Text
function GetUserIDS() { $("#MainContents_ucGenieGrid1_ucGenieGrid1 tr:has(:checkbox:checked)").each(function () { var $tds = $(this).find('td'); if ($tds.length != 0) { var $currText = $tds.eq(1).text(); if ($currText != "") { alert($currText); } } }); }
You need to login to post a comment.
