- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to handle when JavaScript is turned off?
Nowadays, almost every web browser supports JavaScript. If it is turned off, you can use <noscript> tag. To let users know about non-JavaScript web browsers, use the <noscript> tag. The HTML <noscript> tag is used to handle the browsers, which do recognize <script> tag but do not support scripting. This tag is used to display an alternate text message.
Example
<!DOCTYPE html> <html> <head> <title>HTML noscript Tag</title> </head> <body> <script type = "text/JavaScript"> <!-- document.write("Hello JavaScript!") --> </script> <noscript> Your browser does not support JavaScript! </noscript> </body> </html>
- Related Articles
- Why the torch bulb does not glow when the switch is turned off?
- How to Handle JavaScript Events in HTML?
- How to handle bind an event using JavaScript?
- How to handle the withdrawal effects when you stop smoking suddenly?
- How to handle ESC keydown on JavaScript popup window?
- How to handle when checkbox 'checked state' changed event in jQuery?
- How to create an off-canvas menu with CSS and JavaScript?
- How the fleece obtained from sheep is turned into wool?
- Rounding off numbers to some nearest power in JavaScript
- What is the best way to handle a Javascript popup using Selenium Webdriver?
- How to handle tabs, line breaks and whitespace in a text in JavaScript?
- How to disable Javascript when using Selenium?
- How to Round off a number?
- How to round off to nearest thousands?
- Switching on and off bulb in JavaScript

Advertisements