Im trying to unbind a click call on element and than unbind the unbind. I know i can use a handler to handle each and each click, but im using unbind on too many element by using for example:
$(".classname").unbind('click');
and so i can allow to myself to just write it 1 by one, any other esthetic way and way more efficient than writing it 1 by 1 ? Thanks.
EDIT:
detailed example : i got many buttons which all have same css class, when i press 1 specific button i need all of the rest to be unbinded from clicking them. after the button i pressed finishes his purpese i need to re-bind all the click events again. Thats is what i ment when i said unbind the unbind.