vote up 0 vote down star

jQuery uses event bubbling strategy to handle events.

And it claims to be cross browser,

but is "event bubbling" supported by all browsers?

There is another strategy: event capturing, which is reverse to event bubbling,is it extinct?

Or my question could be re-stated as:

Can Javascript decides on whether choosing "event capturing" strategy or "event bubbling" strategy by itself?

flag

40% accept rate
Why the -1 ? seems to be a legitimate question. – Stefano Borini Aug 16 at 12:34

4 Answers

vote up 5 vote down

All browsers? No. Lynx, for instance, doesn't support JavaScript at all.

However, event bubbling is a standard DOM feature. The jQuery documentation is not lying to you.

link|flag
Don't forget there is also event capturing strategy,where is it used or is it extinct? – Shore Aug 16 at 10:44
vote up 2 vote down

From the jQuery compatibility page, it supports the following browsers:

  • Firefox 2+
  • IE6+
  • Safari 3+
  • Opera 9+
  • Chrome 1+

All of which support event bubbling.

According to the W3Schools browser usage page those browsers account for 99.2% of all browser usage in July 2009, I'd say this is cross-browser support covered. Ignore those peddling pointless pedantry about browser support being all or nothing. If you're a user of any other browser you are probably far enough from the mainstream to have your own methods of dealing with browser issues.

link|flag
My main concern now focuses on how javascript chooses to hook on "event capturing" or "event bubbling" phase of model? – Shore Aug 16 at 12:41
vote up 0 vote down

In short, yes. Netscape Navigator 4 doesn't support it, but I don't think there's a lot of worry about supporting Netscape 4 these days.

link|flag
vote up -1 vote down

Either they are lying, or the definition for "Cross-Browser" needs to be slightly altered. It's either cross-browser or it isn't there's no in-between.

link|flag
The "Cross Browser" heading on the jQuery homepage clearly shows what it means if you hover it, and there are further details under "Supported Browsers" in the docs. To summarize, every significant browser for desktop platforms released in the past several years is supported, with many older or less common browsers working just fine (but without being specifically supported targets). – hobbs Aug 16 at 11:07
"every significant browser"... Then it's not completely cross-browser is it? ... No, it isn't. – baeltazor Aug 16 at 11:36
It runs on more than one browser. Therefore it is cross-browser. The only thing that needs altering is your misunderstanding of the phrase. – hobbs Aug 16 at 13:08
um no... Web definitions for Cross-browser Cross-browser refers to the ability for a website, web application, HTML construct or client-side script to support all the web browsers. ... en.wikipedia.org/wiki/Cross-browser - Definition in context – baeltazor Aug 16 at 13:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.