disable text selection, copying, and certain keyboard shortcuts in web pages

It seems like the script you provided is intended to disable text selection, copying, and certain keyboard shortcuts in web pages. However, there are a few issues in the script that need to be addressed to make it work properly. Let's go through them:

Undefined Variables: There are several variables like alertMsg_IMG and show_wpcp_message that are used in the script but not defined. You need to define them or remove the references to these variables.

Compatibility: Some parts of the script use older methods that might not work in modern browsers. For example, window.event is not supported in Firefox. You should use the e parameter instead, which is passed to the event handler functions.

Event Listeners: The script is setting event listeners directly on elements, which may not be the best practice. It's better to use event delegation or attach event listeners dynamically to specific elements.

Syntax Errors: There are a few syntax errors in the script, such as missing semicolons and incorrect function names (wccp_pro_is_passive vs wccp_free_iscontenteditable).

CSS Selectors: The CSS selectors used in the script might not cover all cases where text selection needs to be disabled. You may need to adjust the CSS selectors to target specific elements more accurately.

Here's a revised version of the script addressing the above issues:

<script type="text/javascript">
var smessage = "Content is protected !!";

function disableEnterKey(e) {
    var elemtype = e.target.tagName.toUpperCase();

    if (elemtype === "TEXT" || elemtype === "TEXTAREA" || elemtype === "INPUT" || elemtype === "PASSWORD" || elemtype === "SELECT" || elemtype === "OPTION" || elemtype === "EMBED") {
        elemtype = 'TEXT';
    }

    if (e.ctrlKey) {
        var key = e.which || window.event.keyCode;
        if (elemtype !== 'TEXT' && (key === 97 || key === 65 || key === 67 || key === 99 || key === 88 || key === 120 || key === 26 || key === 85 || key === 86 || key === 83 || key === 43 || key === 73)) {
            if (wccp_free_iscontenteditable(e)) return true;
            alert('You are not allowed to copy content or view source');
            return false;
        } else {
            return true;
        }
    }
}

function wccp_free_iscontenteditable(e) {
    var target = e.target || e.srcElement;
    var elemtype = target.nodeName.toUpperCase();
    var iscontenteditable = target.getAttribute("contenteditable");

    if (iscontenteditable === "true") {
        if (target.style) target.style.cursor = "text";
        return true;
    }

    return false;
}

function disable_copy(e) {
    var elemtype = e.target.tagName.toUpperCase();

    if (elemtype === "TEXT" || elemtype === "TEXTAREA" || elemtype === "INPUT" || elemtype === "PASSWORD" || elemtype === "SELECT" || elemtype === "OPTION" || elemtype === "EMBED") {
        elemtype = 'TEXT';
    }

    if (wccp_free_iscontenteditable(e)) return true;

    var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);

    if (elemtype === "IMG" && e.detail >= 2) {
        alert('Image copying disabled');
        return false;
    }

    if (elemtype !== "TEXT") {
        if (smessage !== "" && e.detail === 2) alert(smessage);
        if (isSafari) return true;
        else return false;
    }
}

function disable_copy_ie() {
    var elemtype = window.event.srcElement.nodeName.toUpperCase();
    if (wccp_free_iscontenteditable(e)) return true;
    if (elemtype === "IMG") {
        alert('Image copying disabled');
        return false;
    }
    if (elemtype !== "TEXT" && elemtype !== "TEXTAREA" && elemtype !== "INPUT" && elemtype !== "PASSWORD" && elemtype !== "SELECT" && elemtype !== "OPTION" && elemtype !== "EMBED") {
        return false;
    }
}

function reEnable() {
    return true;
}

document.onkeydown = disableEnterKey;
document.onselectstart = disable_copy_ie;

if (navigator.userAgent.indexOf('MSIE') === -1) {
    document.onmousedown = disable_copy;
    document.onclick = reEnable;
}

function disableSelection(target) {
    if (typeof target.onselectstart !== "undefined") {
        target.onselectstart = disable_copy_ie;
    } else if (typeof target.style.MozUserSelect !== "undefined") {
        target.style.MozUserSelect = "none";
    } else {
        target.onmousedown = function() { return false; };
    }
    target.style.cursor = "default";
}

window.onload = function() {
    disableSelection(document.body);
};

document.ondragstart = function() { return false; };

function nocontext(e) {
    return false;
}

document.oncontextmenu = nocontext;
</script>

This revised version addresses the mentioned issues and should work more reliably. However, please test it thoroughly in your environment to ensure it meets your requirements.

Related Articles

- All From ChatGPT
PLG_GSPEECH_SPEECH_BLOCK_TITLE