CSS Ellipsis & HTML Tooltip

What do you do when you have a fixed width column or element in which a piece of text must be jammed into? Well, usually you end up righting a big of code to cut of the text and throw...

Read More

Browser Compatibility Testing

The issue of browser testing has always bothered me. It is so time consuming and can even sometimes require you to rethink how you have written your JavaScript code to support all browsers. To make things worse, certain browsers like...

Read More

Centering HTML Elements on Screen

This is the fastest and easiest method I have seen yet to center an HTML element on the screen. Give the element a height and width. Then set the position to fixed, and left and top elements at 50%. Then...

Read More

ASP.NET AJAX Modal Popup

ASP.NET AJAX is great. I have fell in love with it since I first used it. It ease of use and increased user experienced is a great trade-off. But down to the point... It can be quite annoying for a...

Read More

IE Table Rendering and tableLayout Property

I began looking at table performance briefly today specifically in regards to Internet Explorer!!! Firefox renders unbelievably fast in comparison to IE7 - which really sucks if your stuck to develop in IE only. A coworker of mine mentioned the...

Read More