Timer instead of mouse events

jeriarvence

New Member
I added a container to my website. The container is a small form appearing and disappearing in mouse events like click or hover. How Can I control its behavior with timer?For example if a small box appears can I make it to auto-hide after 5 seconds instead of clicking on it?here is the function that I want to control with timer:\[code\]<script type="text/javascript">$(document).ready(function(){$(".button-slide").click(function(){$(".feedback").slideToggle("slow");return false;});});</script>\[/code\]
 
Back
Top