Сообщение от debugx
|
как победить?
|
Убрать привязку лейбла к полю...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(document).ready(function(){
$('tr').click(function() {
alert('Тест')
});
});
</script>
</head>
<body>
<table border='1'>
<tr>
<td>
<input id="t1" type="checkbox" />
<label>...</label>
</td>
</tr>
<tr>
<td>Text
</td>
</tr>
</table>
</script>
</body>
</html>