Side navigation
Ticket #5851: changetest141.html
File changetest141.html, 0.3 KB (added by matiasnu, January 26, 2010 12:52PM UTC)
Same test case but with 1.4.1
<html>
<head>
<script src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
<script>
jQuery(function() {
$('.textbox').live('change', function (event) {
alert("Changed!");
});
});
</script>
</head>
<body>
<input type="text" class="textbox"/>
</body>
</html>
Download in other formats:
Original Format
File changetest141.html, 0.3 KB (added by matiasnu, January 26, 2010 12:52PM UTC)
Same test case but with 1.4.1
<html>
<head>
<script src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
<script>
jQuery(function() {
$('.textbox').live('change', function (event) {
alert("Changed!");
});
});
</script>
</head>
<body>
<input type="text" class="textbox"/>
</body>
</html>