Restituisce un riferimento al documento contenuto nella finestra.
Sintassi
doc = window.document
Parametri
doc
è un riferimento a un oggetto document.
Esempio
<html> <head> <title>Ciao, mondo!</title> </head> <body> <script type="text/javascript"> var doc = window.document; alert( doc.title); // produce: Ciao, mondo! </script> </body> </html>
Specifiche
HTML