Skip to main content

Bug Tracker

Side navigation

Ticket #5820: jquery-1.4.html


File jquery-1.4.html, 0.4 KB (added by jannostern, January 15, 2010 12:23PM UTC)

works incorrectly

<!DOCTYPE html> 
<html>
<head>
<title>jQuery 1.4</title>
</head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.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