Table of Contents

Document Object Model

La modélisation de l'objet document!

HowTo

Faire boucler une fonction

Utiliser la fonction standard setInterval.

Insérer un délai

Utiliser la fonction standard setTimeout.

URL

/!\ Attention /!\ : Ne pas oublier l'URL encoding sur les caractères réservés !

document.location.href
"https://username:password@ginkobox.fr:80/wiki/doku.php?id=python#interactive_shell"
document.location.protocol
"https:"
document.location.username
"username"
document.location.password
"password"
document.location.hostname
"ginkobox.fr"
document.location.port
"80"
document.location.pathname
"/doku.php"
document.location.search
"?id=python"
document.location.hash
"#interactive_shell"