My website has always run smoothly with IE8, IE7, FF, Chrome and Safari. Now I\'m testing it on IE9 and I\'m experiencing a strange problem: in some pages, some tabular data
Found a very useful script to prevent unwanted cells in your html table while rendering.
function removeWhiteSpaces() { $('#myTable').html(function(i, el) { return el.replace(/>\s*<'); }); }
This javascript function you should call when the page loads (i.e. onload event)