- 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 give a warning for Non-JavaScript Browsers?
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 alternate text message
Here’s an example,
<!DOCTYPE html> <html> <head> <title>HTML noscript Tag</title> </head> <body> <script> <!-- document.write("Hello JavaScript!") --> </script> <noscript> Your browser does not support JavaScript! </noscript> </body> </html>
- Related Articles
- How to fix Array indexOf() in JavaScript for Internet Explorer browsers?
- How to suppress Matplotlib warning?
- How to set line breaking rules for non-CJK scripts in JavaScript?
- How can I vertically center a div element for all browsers using CSS?
- Getting Tooltips for mobile browsers in HTML
- How can JavaScript code be hidden from old browsers that do not support JavaScript?
- Role of Canvas Javascript API in Major Browsers
- How to remove non-word characters in JavaScript?
- How to click on across browsers using Selenium Webdriver?
- State whether plastic is biodegradable or non-biodegradable? Give reasons for your Answer.
- Set warning action for a list item in a list group with Bootstrap
- How to block a website in your web browsers (Chrome and Internet Explorer)
- How to maximize and minimize browsers in Selenium with python?
- How to use #error and #warning directives in C#?
- Name two sources of energy which you consider to be non-renewable. Give reason for your choice.

Advertisements