Reputation: 8795
I'm just talking about JavaScript here, not CSS or implementation of the DOM.
I know getters and setters are now available in the latest release of all major browsers except IE. What other JavaScript features are available cross-browser if we have the latest versions of the other browsers and forget about IE for a minute?
Upvotes: 0
Views: 102
Reputation: 31545
XML APIs:
Although these are not "JavaScript functionality", rather DOM APIs
Upvotes: 0
Reputation: 62813
With Gecko-engined browsers, you get:
In terms of other browsers implementing these features, I'm only aware of Webkit implementing Array Extras, but it's actually quite easy to monkeypatch support for those in all browsers since they're just additional methods.
Gecko, Opera and Webkit also support the canvas
element, which although being a new HTML element, is used via JavaScript, so I'm not sure if that fits your criteria. Having said that, there are independent efforts underway to bring it to IE.
Upvotes: 2
Reputation: 66607
I would recommend you visit www.quirksmode.org for a lot of detailed comparisons of different browsers/versions.
Upvotes: 0