Firefox, and perhaps other browsers, disable DOM events on form fields that are disabled. Any event that starts at the disabled form field is completely canceled and does not propagate up the DOM tree. Correct me if I'm wrong, but if you click on the disabled button, the source of the event is the disabled button and the click event is completely wiped out. The browser literally doesn't know the button got clicked, nor does it pass the click event on. It's as if you are clicking on a black hole on the web page.
source: Disabled button stealing onclick events in firefox
I create this fiddle fiddle according @VDesign post refer to an older question.
HTML:
<div style="display:inline-block; position:relative;">
<input id="disabled" type="button" value="clk" disabled>
<div style="position:absolute; left:0; right:0; top:0; bottom:0;"></div>
</div>
JS:
$("div > div").click(function (evt) {
$(this).hide().prev("input[disabled]").prop("disabled", false).focus();
});