Okan Kocyigit
Okan Kocyigit

Reputation: 13421

which versions of chrome/opera/firefox support IndexedDb?

As I see in comments of this page , I could not understand that if chrome supports IndexedDB really.

I'm going to write an userscript for chrome/opera/firefox, and decided to not use localstorage, I just wanna try IndexedDB instead of localstorage, but before start to write script, I have to know that

Which versions of chrome/opera/firefox support IndexedDb?

Thanks.

Upvotes: 2

Views: 8556

Answers (3)

buley
buley

Reputation: 29208

Can I Use has the best summary available.

Which versions of chrome/opera/firefox support IndexedDb?

Summary of browsers with full support.

Chrome: Version 11 onward

Opera: Version 15 onward

Firefox: Version 4 onward

For good measure, IE: Version 10 onward

Upvotes: 11

Michael
Michael

Reputation: 11

http://caniuse.com/#search=indexeddb

Also useful for all the other HTML5 features

Upvotes: 1

Garrett Vlieger
Garrett Vlieger

Reputation: 9494

According to https://developer.mozilla.org/en/IndexedDB, the asynchronous API is supported on Chrome version 12 and Firefox 4.0.

Upvotes: 1

Related Questions