Created
July 16, 2011 02:23
-
-
Save jeremyBanks/1085921 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.transaction("customers").objectStore("customers").get("444-44-4444").onsuccess = function(event) { | |
alert("Name for SSN 444-44-4444 is " + event.target.result.name); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment