Possible Duplicate:
IE only javascript error with getElementsByTagName
var rows=myTable.getElementsByTagName('tr');
rows=Array.prototype.slice.call(rows,0);
Does not work in IE, is there any other way, to convert this into a real array, so that I could use a sort function over it...?