Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

event.bubbles

Podsumowanie

Wskazuje, czy zdarzenie bąbelkuje przez model dokumentu czy nie.

Składnia

bool = event.bubbles 

Przykład

 function goInput(e) {
  // sprawdza czy zdarzenie bąbelkuje
  if not e.bubbles {
     // i jeśli nie - przekazuje je dalej
     passItOn(e); 
  }
  // jeśli bąbelkuje:
  doOutput(e)
}

 

 

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, xuancanh, Mgjbot, Jan Dudek, Ptak82
 Ostatnia aktualizacja: xuancanh,