I pretty much use prototype.js in every web project. Nowadays, though, there are native javascript functions that would avoid reinventing the wheel and IE is not a problem anymore, if even Microsoft is abandoning it :). For instance, I prefer to rely on querySelectorAll() instead of using a js library like Sizzle. That is why …
Tag: javascript
Effortless, template-based dynamic tables
When you develop web applications for a living, sooner or later you’ll need to allow the user to edit collections of data. For instance: Some option… Field 1 Options To create something like this, I’ve been using a very rough script that simply replicated a hidden template row when required for several years. Eventually, I …