Skip to content Skip to sidebar Skip to footer

Javascript Undomanager Browser Support

The HTML5 spec mentions an UndoManager that can be used to query the previous state of a document that's been edited by a user ( http://www.whatwg.org/specs/web-apps/current-work/#

Solution 1:

You can test your own browsers by navigating them to HTML5Test.com. You can also test for it on your page (and then use it if it exists) by doing the following:

returntypeof UndoManager !== 'undefined';

The browsers that currently support it are limited.

No Support: Chrome 6.0, IE 8, FF 3.6

Browser       Score (160)   UndoManager Support
--------------------------------------
IE8           19no
FF3.6101no
Chrome 6142no
Safari 4.0.570no
Opera 10.53102no

Chrome, Firefox, and Opera score well on overall HTML5 support. So, UndoManager support may be coming soon. Safari has promised full HTML5 support "soon", as well. IE9 is supposed to be more focused on web standards.

So, it doesn't look right at this moment, but I imagine there will be 3-4 major browsers with support in the near future.

Post a Comment for "Javascript Undomanager Browser Support"