Apparently a disabled is not handled by any event
Is there a way to work around this issue ?
$(function() { $("input:disabled").closest("div").click(function() { $(this).find("input:disabled").attr("disabled", false).focus(); }); });