Side navigation
Ticket #5820: jquery-1.3.2.html
File jquery-1.3.2.html, 0.4 KB (added by jannostern, January 15, 2010 12:23PM UTC)
works correctly
<!DOCTYPE html>
<html>
<head>
<title>jQuery 1.3.2</title>
</head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
alert($('#checkme').val());
$('#checkme').click(function(){
alert($(this).val());
});
});
</script>
<body>
<input id="checkme" name="checkme" type="checkbox"> <label for="checkme">CheckMe</label>
</body>
</html>
Download in other formats:
Original Format
File jquery-1.3.2.html, 0.4 KB (added by jannostern, January 15, 2010 12:23PM UTC)
works correctly
<!DOCTYPE html>
<html>
<head>
<title>jQuery 1.3.2</title>
</head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
alert($('#checkme').val());
$('#checkme').click(function(){
alert($(this).val());
});
});
</script>
<body>
<input id="checkme" name="checkme" type="checkbox"> <label for="checkme">CheckMe</label>
</body>
</html>