--- title: Window.document slug: Web/API/Window/document translation_of: Web/API/Window/document ---
{{APIRef}}

Restituisce un riferimento al documento contenuto nella finestra.

Sintassi

doc = window.document

Parametri

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