Links vs. JavaScript Event Handlers

Anchor tags are frequently used to do something other than what they were meant for, such as executing some JavaScript code.  I’m talking about cases such as these: <a href=”javascript:doSomething()”>Click Here</a> // or… <a href=”javascript:void(0)” onclick=”doSomething()”>Click Here</a> Both of these …

Best Cheat Sheets for Web Developers

A colleague of mine sent out a link to a very resourceful page containing very helpful cheat sheets for web developers.  Get them here: http://www.webappers.com/2008/11/05/best-cheat-sheets-for-web-developers/ I haven’t seen the WebAppers site before, but it definitely deserves a bookmark and periodic …

Simple JavaScript and CSS File Bundler

Optimizing web page loading is not a new subject, but it remains one that doesn’t get as much attention as it deserves.  Web/UI developers often assume that site performance is mostly attributed to back-end operations (database interactions, processing, etc.), servers …