Jump to content

Set time limit for a function


Alexancho

Recommended Posts

I use a js function that moves a background image and i want to stop this moving after a time.I tried to use setTimeout() and clearTimeout() methods, but it doesn't stop the movement.What is the problem?

<script type="text/javascript" language="javascript">  function MoveBg(){some code} $(function() { var i = setTimeout("MoveBg()" ,200);setTimeout(function(){clearTimeout(i)},10000); }); 	</script>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...