aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/window/name/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
commitda78a9e329e272dedb2400b79a3bdeebff387d47 (patch)
treee6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/it/web/api/window/name/index.html
parent1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff)
downloadtranslated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip
initial commit
Diffstat (limited to 'files/it/web/api/window/name/index.html')
-rw-r--r--files/it/web/api/window/name/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/files/it/web/api/window/name/index.html b/files/it/web/api/window/name/index.html
new file mode 100644
index 0000000000..8127d67285
--- /dev/null
+++ b/files/it/web/api/window/name/index.html
@@ -0,0 +1,23 @@
+---
+title: Window.name
+slug: Web/API/Window/name
+translation_of: Web/API/Window/name
+---
+<p>{{APIRef}}<br>
+ Restituisce o imposta il nome della finestra.</p>
+
+<h2 id="Sintassi" name="Sintassi">Sintassi</h2>
+
+<pre class="eval"><i>stringa</i> = window.name
+ window.name =
+<i>stringa</i>
+</pre>
+
+<h2 id="Esempio" name="Esempio">Esempio</h2>
+
+<pre class="eval">window.name = "vista1";
+</pre>
+
+<h2 id="Note" name="Note">Note</h2>
+
+<p>Il nome della finestra viene utilizzato soprattutto per impostare i target dei link e dei form. In realtà una finestra non deve necessariamente avere un nome.</p>