faqts : Computers : Programming : Languages : JavaScript : Browser Settings

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 13 people (62%) answered Yes
Recently 5 of 10 people (50%) answered Yes

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);
}