Skip to content

Instantly share code, notes, and snippets.

View EloB's full-sized avatar
🚀
The World Is Mine

Olle Bröms EloB

🚀
The World Is Mine
View GitHub Profile
@EloB
EloB / index.html
Created February 27, 2016 22:10 — forked from nolanlawson/index.html
WebSQL full-text search demo (open in Chrome or Safari)
<html>
<body>
<pre id="output"></pre>
<script src="//cdn.jsdelivr.net/jquery/2.1.1/jquery.js"></script>
<script>
var $output = $('#output');
var db = openDatabase('fts_demo', 1, 'fts_demo', 5000000);
db.transaction(function (tx){