I had a javascript hiccup, and I think the solution may be helpful to others. The basic setup is this: Limited space means no room for labels in a login form. So instead we used a preset value in the input elements, like so: <input value="Username" name="username" type="text" /> <input value="Password" name="password" type="text" /> Which […]
Solution to "display:table-row" causing pain and suffering with IE
I recently came up against a situation where I wanted to add rows to a table via javascript. Not a problem with jQuery, EXCEPT that my table rows were being added with 'style="display:block"'. What's wrong with that, you ask? Well, in Firefox the row was being appended to the table but it looked all scrunched […]