Contents

document String

Script navigator

Use the window object to get or set properties of the web browser, or the player.


navigator • The user agent of the web browser or player. Every type of web browser has it's own unique user agent.

navigator.userAgent

appName • The name of the web browser or player.

navigator.appName

Example:


alert("This movie is playing in "+navigator.appName+" "+navigator.appVersion+".");

appVersion • The version of the web browser or player.

navigator.appVersion

document String