Entry
How to check client side Script Engine version.
May 17th, 2000 02:34
Hiroto Sekine, http://www.all.co.nz/support/sample.htm
with IE4+: Below code construct client side Script Engine name and the
version number. You will meet your script engine information at active
pample page, in the status bar.
function GetScriptEngineInfo(){
var s = "";
s += ScriptEngine() + " Version ";
s += ScriptEngineMajorVersion() + ".";
s += ScriptEngineMinorVersion() + ".";
s += ScriptEngineBuildVersion();
return(s);
}