Which browsers support html5 offline storage?
Posted
by Marcin
on Stack Overflow
See other posts from Stack Overflow
or by Marcin
Published on 2009-07-28T15:08:53Z
Indexed on
2010/06/16
11:22 UTC
Read the original article
Hit count: 160
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'?
© Stack Overflow or respective owner