

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Questions & Answers
- How to fix Array indexOf() in JavaScript for Internet Explorer browsers?
- Give me a recipe for a healthy sandwich?
- Getting Tooltips for mobile browsers in HTML
- How to suppress Matplotlib warning?
- How to set line breaking rules for non-CJK scripts in JavaScript?
- Give 5 reasons why should I quit non-veg and be a vegan?
- How to give on click listener for footer view in android listview?
- Set warning action for a list item in a list group with Bootstrap
- How to remove non-word characters in JavaScript?
- How to give Matplolib imshow plot colorbars a label?
- Give examples for the percentage of completion method
- How to add a container for an external (non-HTML) application in HTML5
- Looping in JavaScript to count non-null and non-empty values
- How to give a Pandas/Matplotlib bar graph custom colors?
- How to give sns.clustermap a precomputed distance matrix in Matplotlib?
Advertisements