Tuesday, March 4, 2008

How to find the version of the IE Browser using Javascript

var version = navigator.appVersion;
function Version() // onload
{
if (version.indexOf('MSIE 7.0') != -1)
alert("U R Using IE 7");
else
alert("Some Other");
}

No comments:

 
Feedback Form