Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an alert box that is triggered when users mouseover a certain area. Here is the code:

    $("#contentfooter:contains(This website)").mouseover(function(){
     $(".navTopItemGroup_6").slideDown("slow");
      alert("You've Unlocked A Hidden Area");
      });

How do I prevent this alert box from activating more than one time? i.e., When they mouseover the area once, I don't want the alert box to pop up if they mouseover it twice.

share|improve this question
is it possible to have a counter at the beggining of the code to check for this condition? – Ajai Apr 10 '12 at 22:23

3 Answers

up vote 1 down vote accepted

Use one() http://api.jquery.com/one/.

$element.one('mouseover', function(){ ... })
share|improve this answer

Here is a sample demo

one() binds an event handler and the unbinds it on its first execution.

share|improve this answer

The .one() method will work if you don't hide the content again. But if you do, then simply change your mouseover event to mouseenter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.