ASP.NET (35) SQL (25) JAVASCRIPT (24) HTML (14) STYLE SHEET (6) ASP (4) SCRIPT (1)

Search me out HERE!!

Disable right click on web page using JQuery

Use below JQuery code to disable right click on web page. This will work well on all browser (IE, Firefox, Google chrome).

// To prevent right click
$(document).bind('contextmenu', function (e) {
        e.preventDefault();
        return false;
});

 

Disable saving web page with CTRL-S using JQuery

Use below JQuery code to disable saving web page using "CTRL-S" keyword directly. This will work well on all browser (IE, Firefox, Google chrome).

// To prevent saving web site directly using "ctrl-s"
$(document).bind('keydown keypress', 'ctrl+s', function () {
        $('#save').click();
        return false;
    });