Package

io.scalajs.dom.html

browser

Permalink

package browser

browser package object

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. browser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Console extends Object

    Permalink

    The console module provides a simple debugging console that is similar to the JavaScript console mechanism provided by web browsers.

    The console module provides a simple debugging console that is similar to the JavaScript console mechanism provided by web browsers.

    The module exports two specific components:

    • A Console class with methods such as console.log(), console.error() and console.warn() that can be used to write to any Node.js stream.
    • A global console instance configured to write to stdout and stderr. Because this object is global, it can be used without calling require('console').
    Annotations
    @RawJSType() @native()
  2. class Frame extends Object

    Permalink

    Window Frame

    Window Frame

    Annotations
    @RawJSType() @native()
  3. class Location extends Object

    Permalink

    Window Location object

    Window Location object

    Annotations
    @RawJSType() @native()
    See also

    https://developer.mozilla.org/en-US/docs/Web/API/Location

  4. class MediaQueryList extends Object

    Permalink

    A MediaQueryList object maintains a list of media queries on a document, and handles sending notifications to listeners when the media queries on the document change.

    A MediaQueryList object maintains a list of media queries on a document, and handles sending notifications to listeners when the media queries on the document change.

    This makes it possible to observe a document to detect when its media queries change, instead of polling the values periodically, if you need to programmatically detect changes to the values of media queries on a document.

    Annotations
    @RawJSType() @native()
    See also

    https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryList

  5. trait RawApplyFunction[A, B] extends Object

    Permalink

    JavaScript decodeuri() / encodeuri() Function

    JavaScript decodeuri() / encodeuri() Function

    Annotations
    @RawJSType() @native()
    See also

    http://www.w3schools.com/jsref/jsref_unescape.asp

  6. class Selection extends Object

    Permalink

    A Selection object represents the range of text selected by the user or the current position of the caret.

    A Selection object represents the range of text selected by the user or the current position of the caret. To obtain a Selection object for examination or modification, call window.getSelection().

    A user may make a selection from left to right (in document order) or right to left (reverse of document order). The anchor is where the user began the selection and the focus is where the user ends the selection. If you make a selection with a desktop mouse, the anchor is placed where you pressed the mouse button and the focus is placed where you released the mouse button. Anchor and focus should not be confused with the start and end positions of a selection, since anchor can be placed before the focus or vice versa, depending on the direction you made your selection.

    Annotations
    @RawJSType() @native()
    See also

    https://developer.mozilla.org/en-US/docs/Web/API/Selection

  7. class Window extends Object

    Permalink

    Window object

    Window object

    Annotations
    @RawJSType() @native()
    See also

    https://developer.mozilla.org/en-US/docs/Web/API/Window

Value Members

  1. object Window

    Permalink

    Window Companion

  2. object console extends Console

    Permalink
    Annotations
    @native() @JSName( "console" )
  3. object decodeURI extends Object with RawApplyFunction[String, String]

    Permalink
    Annotations
    @native() @JSName( "decodeURI" )
  4. object decodeURIComponent extends Object with RawApplyFunction[String, String]

    Permalink
    Annotations
    @native() @JSName( "decodeURIComponent" )
  5. object encodeURI extends Object with RawApplyFunction[String, String]

    Permalink
    Annotations
    @native() @JSName( "encodeURI" )
  6. object encodeURIComponent extends Object with RawApplyFunction[String, String]

    Permalink
    Annotations
    @native() @JSName( "encodeURIComponent" )
  7. object escape extends Object with RawApplyFunction[String, String]

    Permalink
    Annotations
    @native() @JSName( "escape" )
  8. object eval extends Object with RawApplyFunction[String, Any]

    Permalink
    Annotations
    @native() @JSName( "eval" )
  9. object location extends Location

    Permalink
    Annotations
    @native() @JSName( "location" )
  10. object performance extends Performance

    Permalink
    Annotations
    @native() @JSName( "performance" )
  11. object unescape extends Object with RawApplyFunction[String, String]

    Permalink
    Annotations
    @native() @JSName( "unescape" )
  12. object window extends Window

    Permalink
    Annotations
    @native() @JSName( "window" )

Inherited from AnyRef

Inherited from Any

Ungrouped