org.scalajs.dom.raw

History

Related Doc: package raw

class History extends Object

The History interface allows to manipulate the browser session history, that is the pages visited in the tab or frame that the current page is loaded in.

MDN

Annotations
@RawJSType()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. History
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new History()

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def back(): Unit

    Goes to the previous page in session history, the same action as when the user clicks the browser's Back button.

    Goes to the previous page in session history, the same action as when the user clicks the browser's Back button. Equivalent to history.go(-1). Note: Calling this method to go back beyond the first page in the session history has no effect and doesn't raise an exception.

    MDN

  6. def back(distance: Any): Unit

  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def forward(): Unit

    Goes to the next page in session history, the same action as when the user clicks the browser's Forward button; this is equivalent to history.go(1).

    Goes to the next page in session history, the same action as when the user clicks the browser's Forward button; this is equivalent to history.go(1). Note: Calling this method to go back beyond the last page in the session history has no effect and doesn't raise an exception.

    MDN

  12. def forward(distance: Any): Unit

  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def go(): Unit

    Loads a page from the session history, identified by its relative location to the current page, for example -1 for the previous page or 1 for the next page.

    Loads a page from the session history, identified by its relative location to the current page, for example -1 for the previous page or 1 for the next page. When integerDelta is out of bounds (e.g. -1 when there are no previously visited pages in the session history), the method doesn't do anything and doesn't raise an exception. Calling go() without parameters or with a non-integer argument has no effect (unlike Internet Explorer, which supports string URLs as the argument).

    MDN

  15. def go(delta: Any): Unit

  16. def hasOwnProperty(v: String): Boolean

    Definition Classes
    Object
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def isPrototypeOf(v: Object): Boolean

    Definition Classes
    Object
  20. def length: Int

    The History.length read-only property returns an Integer representing the number of elements in the session history, including the currently loaded page.

    The History.length read-only property returns an Integer representing the number of elements in the session history, including the currently loaded page. For example, for a page loaded in a new tab this property returns 1.

    MDN

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. def propertyIsEnumerable(v: String): Boolean

    Definition Classes
    Object
  25. def pushState(statedata: Any, title: String): Unit

    Pushes the given data onto the session history stack with the specified title and, if provided, URL.

    Pushes the given data onto the session history stack with the specified title and, if provided, URL. The data is treated as opaque by the DOM; you may specify any JavaScript object that can be serialized.  Note that Firefox currently ignores the title parameter; for more information, see manipulating the browser history. Note: In Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1) through Gecko 5.0 (Firefox 5.0 / Thunderbird 5.0 / SeaMonkey 2.2), the passed object is serialized using JSON. Starting in Gecko 6.0 (Firefox 6.0 / Thunderbird 6.0 / SeaMonkey 2.3), the object is serialized using the structured clone algorithm. This allows a wider variety of objects to be safely passed.

    MDN

  26. def pushState(statedata: Any, title: String, url: String): Unit

  27. def replaceState(statedata: Any, title: String): Unit

    Updates the most recent entry on the history stack to have the specified data, title, and, if provided, URL.

    Updates the most recent entry on the history stack to have the specified data, title, and, if provided, URL. The data is treated as opaque by the DOM; you may specify any JavaScript object that can be serialized.  Note that Firefox currently ignores the title parameter; for more information, see manipulating the browser history. Note: In Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1) through Gecko 5.0 (Firefox 5.0 / Thunderbird 5.0 / SeaMonkey 2.2), the passed object is serialized using JSON. Starting in Gecko 6.0 (Firefox 6.0 / Thunderbird 6.0 / SeaMonkey 2.3), the object is serialized using the structured clone algorithm. This allows a wider variety of objects to be safely passed.

    MDN

  28. def replaceState(statedata: Any, title: String, url: String): Unit

  29. def state: Any

    Returns an any value representing the state at the top of the history stack.

    Returns an any value representing the state at the top of the history stack. This is a way to look at the state without having to wait for a popstate event.

    MDN

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toLocaleString(): String

    Definition Classes
    Object
  32. def toString(): String

    Definition Classes
    AnyRef → Any
  33. def valueOf(): Any

    Definition Classes
    Object
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped