aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/event/bubbles/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/event/bubbles/index.html')
-rw-r--r--files/it/web/api/event/bubbles/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/files/it/web/api/event/bubbles/index.html b/files/it/web/api/event/bubbles/index.html
new file mode 100644
index 0000000000..e75e385070
--- /dev/null
+++ b/files/it/web/api/event/bubbles/index.html
@@ -0,0 +1,31 @@
+---
+title: event.bubbles
+slug: Web/API/Event/bubbles
+tags:
+ - DOM
+ - Gecko
+ - Reference_del_DOM_di_Gecko
+ - Tutte_le_categorie
+translation_of: Web/API/Event/bubbles
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Sommario" name="Sommario">Sommario</h3>
+<p>Indica se un dato evento può emergere attraverso il DOM oppure no.</p>
+<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
+<pre class="eval"><i>bool</i> = event.bubbles
+</pre>
+<p><code>bool</code> vale <code>true</code> se l'evento può emergere, altrimenti vale <code>false</code>.</p>
+<h3 id="Note" name="Note">Note</h3>
+<p>Solo alcuni eventi possono emergere. Tali eventi hanno questa proprietà impostata a <code>true</code>. E' possibile utilizzarla per controllare se un evento può emergere.</p>
+<h3 id="Esempio" name="Esempio">Esempio</h3>
+<pre> function leggiInput(e) {
+ // controlla se emerge
+ if not e.bubbles {
+ // in caso negativo, passa oltre
+ passaOltre(e);
+ }
+ // altrimenti emerge
+ scriviOutput(e)
+}
+</pre>
+<p>{{ languages( { "en": "en/DOM/event.bubbles", "pl": "pl/DOM/event.bubbles" } ) }}</p>