is there a possibility that you can restrict a user from right clicking a disabled button? i am restricting a user for it will not be able to inspect element and remove the disabled attribute in a button. in MOZILLA FIREFOX
$('input:disabled').bind('contextmenu', function(e) {
return false
});
this code only works on enabled button