
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
How to find whether a browser supports JavaScript or not?
To find whether the browser supports JavaScript or nor, 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.
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 check whether or not a browser tab is currently active using JavaScript?
- How to detect whether the browser is online or offline with JavaScript?
- How to find whether a provided number is safe integer or not in JavaScript?
- How to check whether a key exist in JavaScript object or not?
- How to check whether a number is finite or not in JavaScript?
- How to check whether a NaN is a NaN or not in JavaScript?
- JavaScript: How to check whether an array includes a particular value or not?
- How to check the OffscreenCanvas is supported by the Browser or not in JavaScript?
- How to check whether a value is a safe integer or not in JavaScript?
- How to get information about mobile supports sms or not in android?
- How to redirect if JavaScript is not enabled in a browser?
- Detect Whether a Device is iOS or Not Using JavaScript
- How to check whether the background image is loaded or not using JavaScript?
- Check whether a number is a Fibonacci number or not JavaScript
- How to get information about mobile supports in whole world or not in android?

Advertisements