Block right click in website by JavaScript

avatar
Apr 19, 2022 · Snippet · 1 min, 52 words

Simply do that script on your website & see the magic 👇

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

Comments

No comments yet…