Side navigation
Ticket #4642: jquerybug.html
File jquerybug.html, 0.5 KB (added by acoder, May 10, 2009 02:14PM UTC)
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
setTimeout(function()
{
$("#test_ul").slideDown("slow");
}, 1000);
});
</script>
</head>
<body>
<div style="border: 10px solid #C0C0C0 !important;">
<ul id="test_ul" style="margin: 0; padding: 0; border: 0;">
</ul>
</div>
</body>
</html>
Download in other formats:
Original Format
File jquerybug.html, 0.5 KB (added by acoder, May 10, 2009 02:14PM UTC)
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
setTimeout(function()
{
$("#test_ul").slideDown("slow");
}, 1000);
});
</script>
</head>
<body>
<div style="border: 10px solid #C0C0C0 !important;">
<ul id="test_ul" style="margin: 0; padding: 0; border: 0;">
</ul>
</div>
</body>
</html>