Offline Cross-Browser Client-Side Storage for the Web using JavaScript and a little Flash


Delicous: 0

client 

Hi guys. Today I’m going to show you how to do persistent Client-side storage that’ll work in any Web Browser without needing to use Cookies, Browser-Specific hacks or HTML5 – in other words, we’re going to store as much custom information as a site needs on a user’s system without needing to worry about compatibility issues.

Click here to read more »

Web Workers – Amazing Parallel JavaScript Tasking For Your Application


Delicous: 0

 

I’ve been looking at some of the cool new features being added to popular web browsers lately and I thought I’d talk about Web workers this week. Spawned from the Google Gears team’s WorkerPool Api [1], Web workers allow your web pages to run Javascript as a series background threads. Once you’ve created a worker you can communicate with them by simply posting messages to an event handler that’s been specified by the creating object. The real power behind Web workers is that you can perform certain tasks without interfering with the user interface at all – this means fewer pages "hanging" when you’re executing a ton of Ajax reqests through your UI as web worker threads are able to use XMLHttpRequest. 

Click here to read more »