Answers for "how to disable mouse click in js"

2

disable mouse right click javascript

document.oncontextmenu = document.body.oncontextmenu = function() {return false;}
Posted by: Guest on March-12-2020
1

how to disable onclick event in javascript

$("#id").on('click', function(){ //enables click event
    //do your thing here
});

$("#id").off('click'); //disables click event

// If you want to disable a div, use the following code:
$("#id").attr('disabled','disabled');
Posted by: Guest on July-01-2021

Code answers related to "how to disable mouse click in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language