+ 1
Disabling JavaScript
What will happen if you use angular or JavaScript logic inside your app or website and the user disable the JavaScript
2 Answers
+ 3
It will not work. Only html code from html file will be displayed.
+ 1
Thatâs where the noscript tag comes in handy. If you want something displayed to visitors who have javascript disabled, or using a browser that doesnât support it, use noscript.
Example:
<noscript>Sorry, your browser isnât using javascript. That means ..... </noscript>