ak47carbon 0 Newbie Poster

i want to show an jquery animation in index page after showing animation then my website content will be display

Code blocks are created by indenting at least 4 spaces
... and can span multiple lines

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("div").animate({margin:300},"slow");
$("div").animate({height:300},"slow");
$("div").animate({width:300},"slow");
$("div").animate({height:100},"slow");
$("div").animate({width:100},"slow");
$("div").animate({width:100},"slow");
$("div").fadeOut();
});
});
</script>
</head>

<body>
<button>Start Animation</button>
<br /><br />
<div style="background:#98bf21;height:100px;width:100px;position:relative; margin-top:100px;">
</div>
<div >

in this div all giv me all webcontent

</div>

</body>
</html>