vote up 1 vote down star

Hi, I'm trying to find any JavaScript frameworks whose sole aim is to standardize the DOM and JavaScript across all browsers.

What I'm not looking for is frameworks which create their own API to solve these common problems. I want something that will allow me to call for example myElement.dispatchEvent("click") in Internet Explorer. Not something that creates its own observer pattern with its own API.

At the moment the closest thing I can find is www.flowjs.com, this looks good and covers a lot but is missing document.createEvent and a few other features and supplies no contact information from the author.

Regards,

Chris

flag

64% accept rate

3 Answers

vote up 3 vote down check

Dean Edwards' Base2 might be what you're looking for. You might find Diego Perini's NWEvents interesting as well...

link|flag
Base2 looks extremely interesting! – ChrisInCambo Jan 3 '09 at 13:01
Base2 certainly is impressive. I also mentioned NWEvents, because its selector engine seems pretty fast: javascript.nwbox.com/NWMatcher/SLICKSPEED – Christoph Jan 3 '09 at 13:07
Wow is quick, selectors weren't a big concern for this project. But I will keep it in mind for the future. Thanks – ChrisInCambo Jan 3 '09 at 13:18
vote up 0 vote down

Although it has its own API, Prototype tries to do that (at least partially). If you use Firebug, you can notice a lot of methods added to the DOM, in order to make the DOM equally in all browsers.

I know it's not exactly what you were looking for, but it's a half-way solution.

Also, in some browsers, it might not be possible to override some elements of the DOM. Try doing window.alert = function(i) {}; and it will raise errors in some browsers.

link|flag
vote up 0 vote down

There is Ample SDK framework that contains DOM-Events / DOM-Core, and many other standards implementations. Although, it is less known yet, I would strongly recommend taking look into that.

Also, please note, myElement.dispatchEvent("click") is not something standard.

link|flag

Your Answer

Get an OpenID
or

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