I need a sanity check as I've spent about an hour trying to figure this out!
getRows().each(function() {
alert(this); // alerts '[object HTMLTableRowElement]', nothing wrong here
this.hide(); // row not hidden - wtf?
alert('hidden'); // no alert - more wtf!
});
What can be wrong that calling hide() is bombing out?