The HTML5 Canvas element allows developers to create 2D drawings and animations in their web pages and apps through Javascript. There are many different applications…
Page loading is an important metric to track for any web developer, having poor load times can decrease user experience, increase abandonment, and wreak havoc…
I thought it was impossible to run a program outside my XUL app, mainly because of some kind of JavaScript restriction. There are client-side restrictions…
Found two little functions in JavaScript to create a GUID function S4(){ return (((1+Math.random())*0x10000)|0).toString(16).substring(1); } function guid() { return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()); } Thanks to sj at…