Ticket #4642: jquerybug.html
File jquerybug.html, 514 bytes (added by , 13 years ago) |
---|
Line | |
---|---|
1 | <html> |
2 | <head> |
3 | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> |
4 | |
5 | <script type="text/javascript"> |
6 | $(document).ready(function() |
7 | { |
8 | setTimeout(function() |
9 | { |
10 | $("#test_ul").slideDown("slow"); |
11 | }, 1000); |
12 | }); |
13 | </script> |
14 | </head> |
15 | |
16 | <body> |
17 | <div style="border: 10px solid #C0C0C0 !important;"> |
18 | <ul id="test_ul" style="margin: 0; padding: 0; border: 0;"> |
19 | </ul> |
20 | </div> |
21 | </body> |
22 | </html> |