class Navigator extends Object with NavigatorID with NavigatorOnLine with NavigatorContentUtils with NavigatorGeolocation with NavigatorStorageUtils with NavigatorLanguage with NavigatorLocks with NavigatorVibration
The Navigator interface represents the state and the identity of the user agent. It allows scripts to query it and to register themselves to carry on some activities.
A Navigator object can be retrieved using the read-only Window.navigator property.
- Annotations
- @JSType() @native() @JSGlobal()
- Alphabetic
- By Inheritance
- Navigator
- NavigatorVibration
- NavigatorLocks
- NavigatorLanguage
- NavigatorStorageUtils
- NavigatorGeolocation
- NavigatorContentUtils
- NavigatorOnLine
- NavigatorID
- Object
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Navigator()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def appName: String
Returns the name of the browser.
Returns the name of the browser. The HTML5 specification also allows any browser to return "Netscape" here, for compatibility reasons.
- Definition Classes
- NavigatorID
- def appVersion: String
Returns the version of the browser as a string.
Returns the version of the browser as a string. It may be either a plain version number, like "5.0", or a version number followed by more detailed information. The HTML5 specification also allows any browser to return "4.0" here, for compatibility reasons.
- Definition Classes
- NavigatorID
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clipboard: Clipboard
The Clipboard API adds to the Navigator interface the read-only clipboard property, which returns the Clipboard object used to read and write the clipboard's contents.
The Clipboard API adds to the Navigator interface the read-only clipboard property, which returns the Clipboard object used to read and write the clipboard's contents. The Clipboard API can be used to implement cut, copy, and paste features within a web application.
Use of the asynchronous clipboard read and write methods requires that the user grant the web site or app permission to access the clipboard. This permission must be obtained from the Permissions API using the "clipboard-read" and/or "clipboard-write" permissions.
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def geolocation: Geolocation
The NavigatorGeolocation.geolocation read-only property returns a Geolocation object that gives Web content access to the location of the device.
The NavigatorGeolocation.geolocation read-only property returns a Geolocation object that gives Web content access to the location of the device. This allows a Web site or app offer customized results based on the user's location.
- Definition Classes
- NavigatorGeolocation
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getGamepads(): Array[Gamepad]
Implements the Gamepad API.
Implements the Gamepad API.
- def hasOwnProperty(v: String): Boolean
- Definition Classes
- Object
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isPrototypeOf(v: Object): Boolean
- Definition Classes
- Object
- def language: String
Returns a DOMString representing the preferred language of the user, usually the language of the browser UI.
Returns a DOMString representing the preferred language of the user, usually the language of the browser UI. The null value is returned when this is unknown.
- Definition Classes
- NavigatorLanguage
- def languages: Array[String]
Returns a Array of DOMStrings representing the the user's preferred languages.
Returns a Array of DOMStrings representing the the user's preferred languages. The language is described using BCP 47 language tags. The null value is returned when this is unknown.
- Definition Classes
- NavigatorLanguage
- def locks: LockManager
A LockManager object which provides methods for requesting a new Lock object and querying for an existing Lock object.
A LockManager object which provides methods for requesting a new Lock object and querying for an existing Lock object.
- Definition Classes
- NavigatorLocks
- def mediaDevices: MediaDevices
The Navigator.mediaDevices read-only property returns a MediaDevices object, which provides access to connected media input devices like cameras and microphones, as well as screen sharing.
The Navigator.mediaDevices read-only property returns a MediaDevices object, which provides access to connected media input devices like cameras and microphones, as well as screen sharing.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def onLine: Boolean
Returns the online status of the browser.
Returns the online status of the browser. The property returns a boolean value, with true for being online and false for being offline. The property sends updates whenever the browser's ability to connect to the network changes. The update occurs when the user follows links or when a script requests a remote page. For example, the property should return false when users click links soon after they lose internet connection.
- Definition Classes
- NavigatorOnLine
- val permissions: Permissions
- def platform: String
Returns a string representing the platform of the browser.
Returns a string representing the platform of the browser.
- Definition Classes
- NavigatorID
- def propertyIsEnumerable(v: String): Boolean
- Definition Classes
- Object
- def sendBeacon(url: String, data: BodyInit = js.native): Boolean
The navigator.sendBeacon() method can be used to asynchronously transfer small HTTP data from the User Agent to a web server.
The navigator.sendBeacon() method can be used to asynchronously transfer small HTTP data from the User Agent to a web server.
- url
The url parameter indicates the resolved URL where the data is to be transmitted.
- data
The data parameter is the ArrayBufferView, Blob, DOMString, or FormData data that is to be transmitted.
- val serviceWorker: ServiceWorkerContainer
The Navigator.serviceWorker read-only property returns a ServiceWorkerContainer object, which provides access to registration, removal, upgrade, and communication with the ServiceWorker objects for the associated document.
- def storage: StorageManager
https://storage.spec.whatwg.org/
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toLocaleString(): String
- Definition Classes
- Object
- def toString(): String
- Definition Classes
- AnyRef → Any
- def userAgent: String
Returns the user agent string for the current browser.
Returns the user agent string for the current browser.
- Definition Classes
- NavigatorID
- def valueOf(): Any
- Definition Classes
- Object
- def vibrate(pattern: Array[Double]): Boolean
Vibrate the device in the given pattern.
Vibrate the device in the given pattern.
- pattern
the pattern to vibrate. The first number is the initial duration, the subsequent a delay of silence, and so on.
- Definition Classes
- NavigatorVibration
- def vibrate(duration: Double): Boolean
Vibrate the device for the specified number of milliseconds.
Vibrate the device for the specified number of milliseconds.
- Definition Classes
- NavigatorVibration
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()