Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$("li").hover(
function () {
    // do x
},
function () {
    // do y
});

.. thats for hover, how would I do the same for click toggle, i.e do x on click and y on second click?

Manythanks

share|improve this question

3 Answers

up vote 10 down vote accepted
$('li').toggle(function() {
 alert(1)
}, function() {
 alert(2);
});
share|improve this answer
.toggle() is REMOVED in 1.9, use 1.8 or earlier. – bobthyasian Feb 11 at 17:35

$.toggle() will take any number of functions. Here it is with two:

$("li").toggle(
  function() { /* do x */ },
  function() { /* do y */ }
);

Demo: http://jsfiddle.net/vbkBQ/

share|improve this answer
It took me a long time to try and find this. You can also do this with click and hover - brilliant. I wanted to know how to do the if else inside a function like this.. repped. Bookmarked. – TheBlackBenzKid May 30 '12 at 15:36

One problem with toggle() is that it automatically calls event.preventDefault(). Here's one way that will let you leave the default action in place or allow you to only call it conditionally.

$("a").click(function(event){
    var toggle = ($(this).data('toggle') == undefined) ? true : $(this).data('toggle');
    console.log(toggle);

    if(toggle){
        event.preventDefault();
    }

    $(this).data('toggle', !toggle);
});​​
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.