Javascript Workers: An Ajax Example With Callback

I was browsing the Internet one day looking for a conference I could possibly attend regarding web technologies. I came across a certain conference that caught my eye which talked about Javascript workers. To be honest, I’ve never used workers or had any experience with multi-threaded web programming, but, after …

Dynamically Load Javascript Files Using XHR

It probably won’t be often, but sometimes you may find yourself having the need to load Javascript dynamically using XHR.   To name a few use cases: Developing a plugin architecture for an HTML5 application. In order to extend your application’s functionality. Load certain Javascript depending the browser environment. A …