I\'ve got a click event assigned to a div of a particular class. When the click occurs, the class is removed from the div. However, you can still click the div and the
unbind click event - like $(this).unbind('click');' Try this
$(this).unbind('click');'
$('.clickable').click(function() { $(this).removeClass('clickable'); $(this).addClass('not-clickable'); $(this).unbind('click');' });