Firefox Tomorrow

web api instance method

Window: scrollByPages() method

View on MDN ↗

The Window.scrollByPages() method scrolls the current document by the specified number of pages.

Syntax

scrollByPages(pages)

Parameters

  • pages
    • : The number of pages to scroll. It may be a positive or negative integer.

Return value

None (undefined).

Examples

// scroll down the document by 1 page
window.scrollByPages(1);

// scroll up the document by 1 page
window.scrollByPages(-1);

Specifications

DOM Level 0. Not part of specification.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also