I need help with binding back after I unbind an element. Basically, I have three anchor elements, and I want to achieve this:
When one of them is clicked, the other two can't be clicked. Then when the user clicks the close button, I want to bind back the click event for all three links.
To unbind is not a problem, but the binding back is not working. I didn't post any code because I think that the solution provided will work in general, not just in my case.
Is there maybe any other way to achieve what I want, but not with the use of bind/unbind or on/off?
Edit:
Here is how i have done it.The animated div is called miniContainer.This is the sample for one anchor, but it is the same thing for all three.
//First Link
krug1Link.click(function(element){
if(miniContainer.hasClass('animirano')){
return false;
};
element.preventDefault();
miniContainer.stop().animate({ height:360 },{duration:500,easing: 'easeOutBack'});
miniTekst1.animate({opacity:'1'},1200);
polaroidMali.animate({opacity:'1'},1200);
miniContainer.addClass('animirano');
});
//Close Mini Container
close.click(function(element){
miniTekst1.animate({opacity:'0'},1200);
miniTekst2.animate({opacity:'0'},1200);
polaroidMali.animate({opacity:'0'},1200);
polaroidMali2.animate({opacity:'0'},1200);
miniContainer.animate({marginTop: 10, height:1},{duration:600,easing: 'easeInBack'});
miniContainer.removeClass('animirano');
});
I need help with binding back after I unbind an element. Basically, I have three anchor elements, and I want to achieve this:
When one of them is clicked, the other two can't be clicked. Then when the user clicks the close button, I want to bind back the click event for all three links.
To unbind is not a problem, but the binding back is not working. I didn't post any code because I think that the solution provided will work in general, not just in my case.
Is there maybe any other way to achieve what I want, but not with the use of bind/unbind or on/off?
Edit:
Here is how i have done it.The animated div is called miniContainer.This is the sample for one anchor, but it is the same thing for all three.
//First Link
krug1Link.click(function(element){
if(miniContainer.hasClass('animirano')){
return false;
};
element.preventDefault();
miniContainer.stop().animate({ height:360 },{duration:500,easing: 'easeOutBack'});
miniTekst1.animate({opacity:'1'},1200);
polaroidMali.animate({opacity:'1'},1200);
miniContainer.addClass('animirano');
});
//Close Mini Container
close.click(function(element){
miniTekst1.animate({opacity:'0'},1200);
miniTekst2.animate({opacity:'0'},1200);
polaroidMali.animate({opacity:'0'},1200);
polaroidMali2.animate({opacity:'0'},1200);
miniContainer.animate({marginTop: 10, height:1},{duration:600,easing: 'easeInBack'});
miniContainer.removeClass('animirano');
});
Share
Improve this question
edited Dec 3, 2011 at 15:07
RightSaidFred
11.3k37 silver badges36 bronze badges
asked Dec 2, 2011 at 20:12
fluxusfluxus
5595 gold badges16 silver badges31 bronze badges
2
- Duplicate of this question – Pastor Bones Commented Dec 2, 2011 at 20:14
- 2 @PastorBones: That question is about disabling the default behavior of the link, not about disabling the handler itself. – RightSaidFred Commented Dec 2, 2011 at 20:25
2 Answers
Reset to default 8Don't bind
and unbind
to do this.
Choose a mon ancestor, and use jQuery's selector based event delegation.
var clickables = $('.clickable');
$('#some_ancestor').delegate( '.clickable', 'click', function() {
// to disable the others
clickables.not( this ).removeClass('clickable');
});
Then to reenable them all, just add the class back in.
clickables.addClass( 'clickable' );
If you're using jQuery 1.7 or later, then use .on()
instead since it has event delegation built in.
$('#some_ancestor').on( 'click', '.clickable', function() {
// to disable the others
clickables.not( this ).removeClass('clickable');
});
Here's one of the solutions from the ments below.
demo: http://jsfiddle/c9Ydy/3/
<ul id="container">
<li id="link1" class="box clickable">
<a href="#">LINK ONE</a>
</li>
<li id="link2" class="box clickable">
<a href="#">LINK TWO</a>
</li>
<li id="link3" class="box clickable">
<a href="#">LINK THREE</a>
</li>
</ul>
<div id="content_display">
<button>CLOSE</button>
<p id="link1_content">THIS IS THE CONTENT FOR THE FIRST LINK.</p>
<p id="link2_content">THIS ONE IS FOR THE SECOND LINK</p>
<p id="link3_content">AND THIS IS THE THIRD LINK</p>
</div>
js
var clickables = $('.clickable'),
display = $('#content_display'),
$content, // remember the one that was clicked
display_animation_enabled = false;
$('#container').delegate( '.clickable', 'click', function() {
display_animation_enabled = true;
clickables.removeClass('clickable');
if( $content ) { $content.hide(); }
$content = $('#' + this.id + '_content').show();
cycle();
});
display.find('p').hide();
display.find('button').click(function() {
display_animation_enabled = false;
clickables.addClass( 'clickable' );
if( $content ) { $content.hide(); }
});
function cycle() {
if( display_animation_enabled ) {
display.animate({width:300,height:300})
.animate({width:200,height:200}, cycle);
}
}
css
div.box {
width: 50px;
height: 50px;
background: yellow;
margin: 10px;
}
div.clickable {
background: orange;
}
#content_display {
width: 200px;
height: 200px;
background: yellow;
}
#content_display > p {
margin: 10px;
color: blue;
}
Doesn't seem like you would need to unbind/re-bind to achieve the desired result. Just use a flag. i.e.
//This is a variable that you will use to check whether any of the anchors have been
//clicked. If this flag is set to true, then the click handler below will not
//perform any action when the other anchors are clicked. When this flag is set to false
//the click handler will take the desired action. From your description it sounds like
//the action might be opening a window of some sort...
var buttonClicked = false;
//Bind a click handler to each anchor
$('#anchor-1').click(function(){
//check to see if one of the anchors has already been clicked. If none have been
//clicked take execute the code inside the if statement.
if(!buttonClicked){
//set the flag to true, indicating that one of the anchors has been clicked.
buttonClicked = true;
//Here you would open your window or popup...
//i.e. popup.open();
}
});
$('#anchor-2').click(function(){
if(!buttonClicked){
//logic for second anchor..
}
});
//Bind a click handler to the close button you mentioned
$('.close-button').click(function(){
//Close the window or popup here...
//i.e. popup.close();
//set the flag to false, which will allow all of the anchors to be clicked.
buttonClicked = false;
});
If your close button is generated dynamically you will need to use live, delegate, or on, rather than the shorthand click function...