Bug Tracker

Ticket #5851: changetest141.html

File changetest141.html, 340 bytes (added by matiasnu, 2 years ago)

Same test case but with 1.4.1

Line 
1<html>
2  <head>
3    <script src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
4    <script>
5      jQuery(function() {
6        $('.textbox').live('change', function (event) {
7          alert("Changed!");
8        });
9      });
10    </script>
11  </head>
12  <body>
13    <input type="text" class="textbox"/>
14  </body>
15</html>