Is it possible to click on a disabled button and provide some feedback to the user?
HTML:
you can't click on disabled button, but can click on disabled link
$('.btn').on('click', function(e) {
e.preventDefault();
$txt = $('div.text');
if($(this).attr('disabled')){
$txt.html('CLICKED, BUT DISABLED!!');
}else{
$txt.html('Not disabled. =)');
}
});
No action
Click
Click Disabled