function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AhmedPotAhmedPot 

Use of Opendatase in visualforce pages

Hi,

 

I was checking out html5 in visualforce pages. Visualforce is not recognising Opendatabase command.

 

<apex:page showHeader="false" sidebar="false" standardStylesheets="false" docType="html-5.0" >

......

<script>

var db = openDatabase ("Test", "1.0", "Test", 65535);

........

</script>

 

Do we have to include some supporting js file or it is not supported at all.

 

Thanks,

Ahmed

 

 

 

bob_buzzardbob_buzzard

This won't be Visualforce, as the code is in javascript so happens client side.  This call is part of the web sql database AFAIR which the W3C are no longer working on.  Webkit browsers had support for this (safari and chrome) but I don't think any others implemented - firefox didn't, for example.