im having table with more than 1k rows and more than 7 columns, trying to parse into array object, i tried using jquery
$(tableSearch).each(function () {
    $('tr', $(this)).each(function (key, tr) {
        var self = this;
        var obj = new Object();
        var rowPos = 0;
        $('td', tr).each(function (rowPos) {
            obj[_self.colModel[rowPos].name] = $(this).html();
        });
        obj['Key'] = 'Rec-' + key;
    });
});
in FF it takes 300 milli seconds, but in IE its taking 60 seconds :(
as u can compare its around 200 times slower.
is there any way to get performance in IE. i tried raw javascript methods also still in IE efficiency is not achieved.
help me!!!!!!!.. how can i get similar performance in all browsers.
THANKS in Advance