When Can I Tell That I Have Opened A Connection In Indexeddb?
In the getCursor_ function below, please explain how I could determine if IndexedDb has opened and if not re-run function once it has? The getCursor_ runs correctly. However, sinc
Solution 1:
Change your addEventListener line to:
ixDbRequest.addEventListener ("success", function() { getCursor_(objectStoreName) }, false);
Post a Comment for "When Can I Tell That I Have Opened A Connection In Indexeddb?"