Ticket #5851: changetest.html
| File changetest.html, 361 bytes (added by simonjefford, 2 years ago) |
|---|
| Line | |
|---|---|
| 1 | <html> |
| 2 | <head> |
| 3 | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.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> |
