aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/close/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/document/close/index.html')
-rw-r--r--files/it/web/api/document/close/index.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/files/it/web/api/document/close/index.html b/files/it/web/api/document/close/index.html
deleted file mode 100644
index bc86c7bacc..0000000000
--- a/files/it/web/api/document/close/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: document.close
-slug: Web/API/Document/close
-translation_of: Web/API/Document/close
----
-<div>{{APIRef("DOM")}}</div>
-
-<p><code>document.close()</code> termina la scrittura su un documento che รจ stato aperto con <a href="it/DOM/document.open">document.open()</a>.</p>
-
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-
-<pre class="eval">document.close();
-</pre>
-
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-
-<pre>// apro un documento per scrivervi sopra;
-// scrivo il contenuto sul documento;
-// chiudo il documento.
-document.open();
-document.write("&lt;p&gt;Testo da inserire...&lt;/p&gt;");
-document.close();
-</pre>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-98948567">DOM Level 2 HTML: <code>close()</code> Method</a></p>