HTML5 Storage supported browser
if (!window.openDatabase) { alert(‘Databases are not supported in this browser.’); } else { alert(‘Databases are supported in this browser.’); } Advertisements
if (!window.openDatabase) { alert(‘Databases are not supported in this browser.’); } else { alert(‘Databases are supported in this browser.’); } Advertisements
The client-side database storage Currently Google Chrome support HTML5 Local Databases Chrome is now available for the Windows and Mac, so that makes the browser platform consistent. Basis example for HTML5 database usage is var dbName = ‘Database Name’; var dbVersion = ‘1.0’; var dbDspName = ‘Display Name’; var dbmaxSize = 100000; var db =… Continue reading HTML5 Storage