"If at first you don't succeed; call it version 1.0" :-Unknown

Pages

Tuesday, July 13, 2010

Disable JavaScript on browsers running IE6 or Lesser

 Hi friends,
Web Developers often face requirements to detect the browser type and version and execute some script based on that. If you are not using any JavaScript framework, then here’s how to execute a script only if the Internet Explorer version is greater than 6 (IE6)
Just add this piece of code in between the ‘head’ tags

<head>
<title>Execute script only if > IE 6</title>
<!--[if gte IE 7]>
<SCRIPT LANGUAGE="Javascript">
alert("You are running Internet Explorer 7 or greater");
</SCRIPT>
<![endif]-->
</head>
 
This is how Microsoft officially recommends you to detect the browser type and version. As stated in the documentation,
“The downlevel-hidden conditional comment contains hyphens ("--") in the opening and closing tag, similar to the basic HTML Comment. The content is placed inside the comment tags. Because the first four characters and the last three characters of the comment are identical to a basic HTML Comment element, down-level browsers ignore the HTML content inside the comment block”

HTML5: Up and RunningHTML5: Designing Rich Internet Applications (Visualizing the Web)Beginning HTML5 and CSS3: Next Generation Web Standards 

No comments: