$(".guess_box").each( function() {
$(this).unbind("click");
But I also tried the code below and it seems to work.
$(".guess_box").unbind("click");
Is it necessary to use "each" to explicitly loop through each element or will JQuery automatically call the unbind method on all elements that match a selector?










