I just found out about PIE.htc, a javascript behavior file for IE that enables a lot of CSS3 on IE6+. I though of integrating it with my own css3hacks library to do all the work for ie. So today I just commited the library to google code. It is really simple to use. Just add [...]

I found myself needing to implement a tri-state checkbox in javascript. A checkbox has initially 2 states: on or off. From the html perspective if the checkbox is checked then the value is submitted, if it is not then the value is not submitted. From the javascript perspective you can use: if (checkbox.checked) {   [...]

On my previous post I looked at how some frameworks handle the multimodule approach to separate javascript code. Since then I’ve been playing with different ways of loading scripts online vs. doing it offline. After doing some research on the subject I found this website where they show three different approaches to load javascript files. [...]

When I’m developing small or medium or large javascript projects I end up with the same problem all the time: code grows and it starts getting a mess if you don’t do something about it. The only way out is separating your code into different modules which leads to the only conclusion of separating it [...]