aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/htmlformelement/target/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/htmlformelement/target/index.html')
-rw-r--r--files/it/web/api/htmlformelement/target/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/files/it/web/api/htmlformelement/target/index.html b/files/it/web/api/htmlformelement/target/index.html
new file mode 100644
index 0000000000..c94b8a78f9
--- /dev/null
+++ b/files/it/web/api/htmlformelement/target/index.html
@@ -0,0 +1,24 @@
+---
+title: HTMLFormElement.target
+slug: Web/API/HTMLFormElement/target
+translation_of: Web/API/HTMLFormElement/target
+---
+<div>{{APIRef("HTML DOM")}}</div>
+
+<p><b>target</b> legge o imposta il contenuto dell'attributo target (per esempio, il frame dove verrĂ  visualizzato l'output del form).</p>
+
+<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
+
+<pre class="eval"><i>stringa</i> = form.target
+form.target =
+<i>stringa</i>
+</pre>
+
+<h3 id="Esempio" name="Esempio">Esempio</h3>
+
+<pre class="eval">myForm.target = document.frames[1].name;
+</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-6512890">DOM Level 2 HTML: target</a></p>