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).