I would like to perform the click event of a element:
jQuery('input#submit').click(function() {
if ( jQuery('input#submit').attr("disabled") ) {
alert('SUP');
}
});
However this will not work as the element is required to be enabled for the click even to be executed.
Any help would be appreciated,
Thanks