I have a table with 5000 rows. In each row I have an html element. myElementList is the list of those elements. Now I need to select all the tr's of these elements. I am using the following code.
myElementList.closest('tr');
This work great in FF. But when I run the same in IE 8. The browser hangs out and a popup messgae appears that propmt for to stop the script.
Any suggestion why I am seeing this behaviour or thier is any alternative.
Edit:
The behaviour remains same when I use parents()
myElementList.parents('tr');

tr, but a smarter approach would be to utilize patterns. Will thetralways be the fourth-level up? Does it have a class/id? Etc. – Blender Sep 30 '11 at 17:23