1
vote
jQuery Change Div Button States & Click Disable
I would change your click() handler to this:
$("div.__button_image").click(function () {
$(this).removeClass("__button_image_hover");
$(this).addClass("__button_image_click …
