Potluri schrieb:

I'm planning to loop through the rows of table and get the id of each row but
I'm not able to loop through the rows in IE but in firefox it works. I can't
provide you with any links at this point. When I'm trying to put an alert
message inside the loop of each, it doesn't give the alert message. but in
firefox it alerts 10 times if table has 10 rows with same selector as

$(">tbody:first/tr","#srTable").each(

What about this:

$(document).ready(function(){
  $("#srTable tbody tr").each(
    function(){alert("test");
  });
});

This give me 3 alerts in a table with 3 rows.

--
Viele Grüße, Olaf

-------------------------------
[EMAIL PROTECTED]
http://olaf-bosch.de
www.akitafreund.de
-------------------------------

Reply via email to