Ticket #4483: test-4483.html
File test-4483.html, 444 bytes (added by , 12 years ago) |
---|
Line | |
---|---|
1 | <!DOCTYPE html> |
2 | <html> |
3 | <head> |
4 | <title>test</title> |
5 | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script> |
6 | </head> |
7 | <body> |
8 | <table border="1"><tbody><tr><td>TD1</td><td>TD2</td></tr></tbody></table> |
9 | <script type="text/javascript"> |
10 | $(function() { |
11 | |
12 | $("td").click(function() { |
13 | |
14 | $(this).hide().fadeIn(2000, function() { alert("td done!"); }); |
15 | |
16 | }); |
17 | |
18 | }); |
19 | </script> |
20 | </body> |
21 | </html> |