I am binding some click events to some images I have.When one of them is clicked I want to disable all of the images then after two seconds add back the same click event.
I have the following so far:
$('#pagination img').each(function(index){
$( this ).bind ("click",function(){
pageClick = true;
pagendex = index*9;
clearInterval(progresstracker);
$("#progressbar").progressbar( "option", "value", 0);
numSecondsPassed=0;
$('#pagination img').each(function(index){
$(this).unbind('click');
});
// alert("Page Index" + pageIndex);
rotateImage();
}).mouseover(function(){
$(this).css("cursor","pointer");
});
});
I am unbinding them and that works.But I need to after two seconds bind them back to the click event with the same variables and unbinding again.Basically when they click unbind for 2 seconds then bind back rinse repeat.