Ticket #5681: test-5681.html
| File test-5681.html, 346 bytes (added by dmethvin, 4 years ago) |
|---|
| Line | |
|---|---|
| 1 | <html> |
| 2 | <head> |
| 3 | <script type="text/javascript" src="http://code.jquery.com/jquery-1.4a1.js"></script> |
| 4 | <script type="text/javascript"> |
| 5 | $(function() { |
| 6 | $(".test").click(function() { $(this).text("clicked"); }); |
| 7 | $(".test").clone(true).appendTo("body"); |
| 8 | }); |
| 9 | </script> |
| 10 | </head> |
| 11 | <body> |
| 12 | <div class="test">foo</div> |
| 13 | </body> |
| 14 | </html> |
