Is it possible to click on a disabled button and provide some feedback to the user?
HTML:
$('#idButton').on('click', function() { // The button is disabled but this will be executed. });
The above example works with JQuery for disabled buttons that need the event to be captured.