aboutsummaryrefslogtreecommitdiff
path: root/files/it/window.find/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/window.find/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/window.find/index.html')
-rw-r--r--files/it/window.find/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/files/it/window.find/index.html b/files/it/window.find/index.html
new file mode 100644
index 0000000000..ebebfa374d
--- /dev/null
+++ b/files/it/window.find/index.html
@@ -0,0 +1,32 @@
+---
+title: window.find
+slug: window.find
+tags:
+ - DOM
+ - DOM0
+ - Gecko
+ - Gecko DOM Reference
+translation_of: Web/API/Window/find
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Summary" name="Summary">Sommario</h3>
+<p>Trova una stringa in una finestra.</p>
+<h3 id="Syntax" name="Syntax">Sintassi</h3>
+<pre class="eval"><em>window</em>.find(<em>aString</em>, <em>aCaseSensitive</em>, <em>aBackwards</em>, <em>aWrapAround</em>,
+ <em>aWholeWord</em>, <em>aSearchInFrames</em>, <em>aShowDialog</em>);
+</pre>
+<ul>
+ <li>aString: La stringa di testo da cercare.</li>
+ <li>aCaseSensitive: Booleano. Se true, imposta la ricerca a case-sensitive.</li>
+ <li>aBackwards: Booleano. Se true, imposta la ricerca al contrario.</li>
+ <li>aWrapAround: Booleano. If true, specifies a wrap around search.</li>
+ <li>aWholeWord: Boolean. Se true, imposta la ricerca solo su parole intere.</li>
+ <li>aSearchInFrames: Booleano. Se true, attiva la ricerca nei frames.</li>
+ <li>aShowDialog: Boolean. Se true, mostra una finestra di dialogo per la ricerca.</li>
+</ul>
+<h3 id="Returns" name="Returns">Returns</h3>
+<p>true if the string is found; otherwise, false.</p>
+<h3 id="Example" name="Example">Esempio</h3>
+<h3 id="Notes" name="Notes">Note</h3>
+<h3 id="Specification" name="Specification">Specifiche</h3>
+<p>{{ DOM0() }} This was added by with {{ Bug(9550) }}.</p>