Skip to main content

Bug Tracker

Side navigation

Ticket #6247: test.html


File test.html, 0.6 KB (added by ddango, March 09, 2010 12:02AM UTC)

test case

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
	$(document).ready(function(){    
    $("input[type='checkbox']").live("change", function(){
			alert("yo");
		});	
    $("#special").live("click", function(){
      alert("ho");
    });
    
	});
</script>
</head>
<body>
<form>
  <input type="checkbox" id="cbx" />
  <input type="checkbox" id="special" />
  </form>
</body>
</html>

Download in other formats:

Original Format