Skip to content

Instantly share code, notes, and snippets.

@hyeonseok
Last active March 30, 2025 00:35
Show Gist options
  • Save hyeonseok/6410154 to your computer and use it in GitHub Desktop.
Save hyeonseok/6410154 to your computer and use it in GitHub Desktop.
Small JavaScript function to allow user using context menu or selecting text on some damn web pages.
(function () {
var d = document;
d.oncontextmenu = null;
d.ondragstart = null;
d.onselectstart = null;
d.onmousedown = null; // gmarket.co.kr
d.body.style.MozUserSelect = '';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment