up vote 61 down vote favorite
34
share [g+] share [fb]

Essentially, I wanted to run a piece of demo code from W3c Offline Webapps page. It looks like that:

 var db = window.openDatabase("notes", "", "The Example Notes App!", 1048576);

Firefox 3.5, IE8 and Chrome do not seem to get it. Is there anybody out there that actually wrote support for that? Or is this wishful thinking about 'the standard of the future'?

link|improve this question

1  
Voting to close this question as it is now almost 2.5 years old, and that means it is incredibly out of date in regards to HTML5 features. – slugster Nov 23 '11 at 10:27
feedback

protected by slugster Nov 23 '11 at 10:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

12 Answers

up vote 165 down vote accepted

Wikipedia has a table comparing the various browser engines and what portions of HTML5 they support.

A reposted internal Yahoo! article also details some differences between localstorage support, to quote:

Firefox 3.5, Safari 4, IE8, Chrome 4+: HTML5 localStorage; these modern browsers all support the core localStorage functionality defined in the HTML5 draft.

Firefox 2.x and 3.0: Gecko globalStorage, a very early implementation similar to HTML5’s localStorage.

Safari 3.1 & 3.2: HTML5 Database Storage, because Safari 3.1 and 3.2 don’t support HTML5 localStorage.

IE6, IE7: userData persistence, a rarely used IE feature for associating string data with an element on a web page and persisting it between pageviews.

Google Chrome Pre 4: Gears Database API, which is built into earlier versions of Chrome and thus doesn’t require a separate install.

link|improve this answer
2  
+1 for a good answer with many sources. – statenjason Jul 28 '09 at 19:03
1  
Thanks for very extensive answer! – Marcin Jul 29 '09 at 6:22
There's another answer below but I wanted to add that Chrome 4 and 5 support local HTML5 local storage. The Developer Tools also allow you to inspect locally stored objects. – pnewhook Feb 25 '10 at 19:52
feedback

I believe Safari 3.1 supports openDatabase.

You should check out the PersistJS library, which provides in interface to all the different offline storage capabilities of the different browsers and plugins. It currently supports:

  • flash: Flash 8 persistent storage.
  • gears: Google Gears-based persistent storage.
  • localstorage: HTML5 draft storage.
  • whatwg_db: HTML5 draft database storage.
  • globalstorage: HTML5 draft storage (old spec).
  • ie: Internet Explorer userdata behaviors.
  • cookie: Cookie-based persistent storage.
link|improve this answer
feedback

Chrome 4 & 5 support localStorage :)

link|improve this answer
feedback

Opera 10.53 supports it.

link|improve this answer
feedback

Check out the caniuse guide which provides information for future versions as well. It also includes mobile browsers.

link|improve this answer
feedback

There is also YUI Storage Lite: http://yuilibrary.com/gallery/show/storage-lite It has a good compatibility (IE6+, Firefox 2+, Chrome 4+, Opera 10.5+, Safari 3.1+, etc.) and no browser plugins are required.

link|improve this answer
feedback

AFAIK, WebKit supports it.

link|improve this answer
3  
Some references would be nice. – Ionuț G. Stan Jul 28 '09 at 15:20
feedback

WebKit (as used by Safari and WebKit/gtk at least) supports localStorage, sessionStorage, client-side databases and the application cache. Other WebKit ports (WebKit/qt, WebKit/wx, Chrome, etc) haven't yet turned on support :-(

link|improve this answer
1  
Is that true of both the mainline and beta line of Chrome? – Nosredna Jul 28 '09 at 19:02
feedback

The iPhone version of Safari has rather good support for HTML5, including offline storage.

link|improve this answer
feedback

You can always check if a browser support this feature with window['openDatabase'] !== null;

More info on:

http://geoffrey.vandiest.biz/post/2011/04/30/HTML5-Local-Storage.aspx

link|improve this answer
feedback

lawnchair is a newer and more actively supported library.

It provides adapters to enable older browsers and stores json objects

http://westcoastlogic.com/lawnchair/

It even has a nice test suite so you can verify support in your browser easily

http://westcoastlogic.com/lawnchair/tests/

link|improve this answer
feedback

Below list gives information on supporting browsers for offline functionality:

  1. IE: Not supported
  2. FF: 3.5+
  3. Safari: 4.0+
  4. Chrome: 5.0+
  5. Opera: 10.6+
link|improve this answer
Consider adding some references to this answer. – NullUserException Nov 23 '11 at 14:51
feedback

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