Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

readystatechange

Esta tradução está incompleta. Ajude atraduzir este artigo.

O evento readystatechange é ativado quando o atributo readyState de um documento é alterado.

Informações gerais

Especificação
HTML5
Interface
Event
Propaga
Não
Cancelável
Não
Alvo
Document
Ação Default
Nenhuma.

Propriedades

Property Type Description
target Somente leitura EventTarget The event target (the topmost target in the DOM tree).
type Somente leitura DOMString The type of event.
bubbles Somente leitura boolean Does the event normally bubble?
cancelable Somente leitura boolean Is it possible to cancel the event?

Exemplo

// alternativa ao DOMContentLoaded
document.onreadystatechange = function () {
    if (document.readyState == "interactive") {
        initApplication();
    }
}

Compatibilidade entre Navegadores

Este evento tem sido suportado pelo Internet Explorer a várias versões, e pode ser usada como uma alternativa para o evento DOMContentLoaded (veja a seção cross-browser fallback).

Eventos Relacionados

Etiquetas do documento e colaboradores

 Colaboradores desta página: macalha
 Última atualização por: macalha,