Jquery First Column Select Problem
Posted
by oraclee
on Stack Overflow
See other posts from Stack Overflow
or by oraclee
Published on 2010-05-07T07:45:46Z
Indexed on
2010/05/07
7:58 UTC
Read the original article
Hit count: 243
jQuery
Hi all;
Jquery Code:
$("[id$=gridvv] tr").filter(function() { return $('td', this).length && !$('table', this).length }).click(function() {
Alert('test');
});
i need "td = .locked" click
<table>
<tr>
<td class="locked">Blabla<td>
<td>test1</td>
<td>test2</td>
</tr>
</table>
© Stack Overflow or respective owner