JS Remove Browser Right click Default Event

Source: Internet
Author: User

1. All right-click events throughout the page

Document.oncontextmenu = function () {
return false;
}

2. Specific areas

document.getElementById ("Test"). OnContextMenu = function (e) {
return false;
}

3. You can add specific events to your favorite blocks after you remove them.

Js:

document.getElementById ("Test"). onmousedown = function (e) {
if (E.button ==2) {
Alert ("You click right Button");
}else if (E.button ==0) {
Alert ("You ordered the left button");
}else if (E.button ==1) {
Alert ("You've ordered the wheel");
}
}

Jq

$ ("#test"). MouseDown (function (e) {
Doing
});

4. Bind and trigger via JQ bind

$ ('). Bind ("ContextMenu", function (e) {

Doning

return false;

});

$ ('). Trigger (' ContextMenu ');

JS Remove Browser Right click Default Event

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.