Flotr2 Flotr2 is a library for drawing HTML5 charts and graphs. It is a branch of flotr which removes the Prototype dependency and includes many improvements Graph all the things!
Tag Archives: html5
LinkedIn For iPad: using local storage for snappy mobile apps
Write up by Akhilesh Gupta We’ve found HTML 5 local storage to be an effective way to improve an application’s performance, both in terms of time and space requirements: Temporarily storing recently fetched data results in a tremendous improvement in application responsiveness. It provides the user the ability to move around the application quickly without [...]
Introducing Web SQL Databases
Introducing Web SQL Databases by Remy Sharp The Web SQL database API isn’t actually part of the HTML5 specification, but it is part of the suite of specifications that allows us developers to build fully fledged web applications, so it’s about time we dig in and check it out. I wasn’t aware this existed; but [...]
HTML5 localstorage – Simple notepad
I wanted to create a simple timestamped notepad using just HTML and JavaScript. This meant I wanted to store some data locally, at least in the browser. So I started looking at HTML5′s localstorage. In order to get started I hit up Google and came across this blog post on localstorage. Definitely visit there if [...]