Window.scrollByPages()

Non-standard: This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

Resumo

Rola o documento atual para a página especificada.

Sintaxe

window.scrollByPages(pages)

Parâmetros

  • pages é o número de páginas a serem roladas.
  • pages pode ser um número inteiro positivo ou negativo.

Exemplo

// rola o documento para baixo até a página 1
window.scrollByPages(1);

// rola o documento para cima até a página 1
window.scrollByPages(-1);

Notas

Specification

DOM Level 0. Not part of specification.