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
$('.header')on or off based on some formVersion value? – Tejs Apr 27 '12 at 14:52