BLOG > Category Archives: Javascript

Equal Column Heights with jQuery

Oct
23

A while back, I wrote an article describing how the Faux Column CSS method can be used to create the illusion two or more columns in a layout are equal in height. This method, I’ve since discovered, has its shortcomings. It is fine for relatively non-ornate designs, however breaks down when faced with CSS3 box-shadows [...]

Javascript Snippet: Clear a form value when a user clicks (focuses) inside

Jul
04

This is what our end result will look and behave like: Clearing a form field on user click (onfocus) We’ll start off building something that will simply clear any default content assigned to a form when user clicks (or focuses) on it. The default value of a form is assigned with value=”value”. <input type="text" name="email" [...]