Initially, I was looking for a basic tutorial on how to get started with client-side databases in FF3.5. I realized that this feature is supported in FF, Safari and IE8. However, I ran into a rather simple problem, which is that the syntax for creating such a database does not seem to be found in FF3.5.
For example, to create a new db:
var database = window.openDatabase("Database Name", "Database Version");
However, in FF3.5 window.openDatabase was not found. It is in Safari 4 using this syntax. I have not tested IE8, so I do not know about it.
Does anyone have more info on this?
javascript database firefox client
Geuis
source share