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.

This might be a bit of a random question but lets see. The code below i use to create a sliding menu. I want to unbind the click event on the '.header' sections, which i know i can do by using .off() or .unbind() although i'm not sure which is best in my situation. (using jQuery 1.7.2).

$(document).ready(function(){
    $('.section').hide();
    $('.header').click(function(){
      if($(this).next('.section').is(':visible'))
      {
        $('.section:visible').slideUp()              
        $('.arrows:visible').attr("src","right.gif")
      }
      else
      {
        $('.section').slideUp();
        $(this).next('.section').slideToggle();
        $(this).find('.arrows').attr("src","down.gif")
    });
});

The problem I have is that I only want to unbind the click event while a 'Print mode' is activated and then re-attach that click event and the functionality that comes with it afterwards. Something like the code below. Is there a way to do this without re-using all of the above code?

$('#printVers').click(function(){
   if($('#formVersion').val() != "Print")
   {
     $('.header').unbind('click');
   }
   else
   {
     //else re-attach functionality?
   }
});

Cheers

share|improve this question
So you simply want to take the click event handler for $('.header') on or off based on some formVersion value? – Tejs Apr 27 '12 at 14:52
Well yes, but how do i refer to the click function in the first code block to re-attach it? – Mark Walters Apr 27 '12 at 14:54
possible duplicate of How to temporarily disable a click handler in jQuery? – Fabrizio Calderan Apr 27 '12 at 14:55
Maybe i should try and re-engage my brain with coffee and food rather than ask silly questions on a Friday afternoon, not only was it a silly question but one that has already been asked :( – Mark Walters Apr 27 '12 at 14:59

6 Answers

up vote 3 down vote accepted

Simply make a named function. You can go low tech here and back to basics to unbind and reattach specific events.

function doStuff()
{
    if($(this).,next('.section').is(':visible'))
        ...
}

$('.header').on('click', doStuff);
$('.header').off('click', doStuff);
share|improve this answer
Damn, you beat me by 30 seconds XD – DangerMonkey Apr 27 '12 at 14:57
It's so simple it's not even funny. Thanks Tejs – Mark Walters Apr 27 '12 at 15:00

Instead of unbind and re-bind, I suggest you to add a simple class to .header and check for the class in the click handler. See below,

$('#printVers').click(function(){
   if($('#formVersion').val() != "Print")
   {
     $('.header').addClass('dontClick');
   } else  {
     $('.header').removeClass('dontClick');
   }
});

And in your .header click handler,

$('.header').click(function(){
     if ($(this).hasClass('dontClick')) {
        return false;
     }
     //rest of your code

If you insist on having a unbind and bind, then you can move the handler to a function and unbind/bind the function any number of time..

share|improve this answer
Thanks i also like this version, again something i hadn't thought of doing. – Mark Walters Apr 27 '12 at 15:01
@MarkWalters bind/unbinding a event handler is lot of work than simply adding and removing a class. This is a common technique, but again it is up to you to choose which method you want to follow. – Vega Apr 27 '12 at 15:03
How is Tjes idea of using .on() and .off() and naming the function a lot of hassle? I like both ideas and i did upvote your answer! :) – Mark Walters Apr 27 '12 at 15:10
@MarkWalters upvote doesn't matter.. I was just saying that bind/rebind an event handler is expensive than adding a class and removing a class. – Vega Apr 27 '12 at 15:11
What do you mean by expensive? because you said it was a lot of work before, to which i disagree i actually think for me to implement (although minimal) there is slightly more to do with your code? – Mark Walters Apr 27 '12 at 15:13
show 2 more comments

You can try something like this.

$('#printVers').click(function(){
   if($('#formVersion').val() != "Print")
   {
       $('.header').addClass('clickDisabled');
   }
   else
   {
       $('.header').removeClass('clickDisabled');
   }
});

And then in the click handler check for this class.

$(document).ready(function(){
    $('.section').hide();
    $('.header').click(function(){
        if(!$(this).hasClass('clickDisabled')){
            ...
            ...
        }
    });
});
share|improve this answer
Guess our recommendation is not considered :) – Vega Apr 27 '12 at 15:00
Hmmmm...there are different ways to do it...but our thoughts match :) – ShankarSangoli Apr 27 '12 at 15:02

Why not make that top section a function, and then call it in your else statement?

share|improve this answer

You could put all the code under the .click in a separated function

function headerClick(){
  if($(this).next('.section').is(':visible'))
  {
    $('.section:visible').slideUp()              
    $('.arrows:visible').attr("src","right.gif")
  }
  else
  {
    $('.section').slideUp();
    $(this).next('.section').slideToggle();
    $(this).find('.arrows').attr("src","down.gif")
  }
}

and then bind it like this:

$(document).ready(function(){
    $('.section').hide();
    $('.header').click(headerClick);
});

$('#printVers').click(function(){
   if($('#formVersion').val() != "Print")
   {
       $('.header').unbind('click');
   }
   else
   {
       $('.header').click(headerClick);
   }
});
share|improve this answer

You could try setting a variable as a flag. var canClick = ($('#formVersion').val() != 'Print'); Then in the click handler for your .header elements check to see if canClick is true before executing your code.

If you still want to remove the handler you can assign the events object to a variable. var eventObj = #('.header').data('events'); That will give you an object with all the handlers assigned to that object. To reassign the click event it would be like $('.header').bind('click', eventObj.click[0]);

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.