jquery question
jquery question
my test site is nationaldebtresolution.com/test
if you go to this home page you will see a form that scrolls down right away from the left. you cant miss it.
the problem is it pops in fast. i want a user to be on the site for at least 5 seconds and then it pops in.
here is the code;
css file -
<link rel="stylesheet" type="text/css" href="weber.css">
javascript it uses -
<script type="text/javascript">
$(document).ready(function(){
$('#aweber_form_popin').animate({top: '110px'}, 1500);
});
</script>
html -
<!--START POP IN--><div id="aweber_form_popin">
<div class="aweber_close"><a onclick="$('#aweber_form_popin').fadeOut();" onmouseover="this.style.cursor='pointer'"><img src="img/closebutton.gif" width="19" height="19" alt="close" /></a></div>
<iframe src="weber.html" width="545" style="border:0px solid #000;overflow:hidden; padding:0px; margin:0px;" height="475" SCROLLING="NO" FRAMEBORDER="0"></iframe></div><!--END POPIT-->
how do i make it so when a user is at the site it pops in about 5 to 10 seconds