Answer the question
In order to leave comments, you need to log in
How to stop a website from loading when javascript is disabled in the browser?
It is necessary that the site does not load when scripts are disabled in the browser (or with NoScript). Preferably without negative effects for SEO.
PS:
<noscript>
<style>body { display: none; }</style>
</noscript>
Answer the question
In order to leave comments, you need to log in
Maybe,
<html>
<head>
<noscript>
<meta http-equiv="refresh" content="0;url=http://site/blank.html">
</noscript>
</head>
</html>
1. Sign links to files via ajax on click (or other event).
No JS - no files)
2. Create a "screen" with an additional layer on top of all content (for the entire width and height of the page) and disable it through JS.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question