On 11/3/06, Javier Rojas <[EMAIL PROTECTED]> wrote:
>  actual_ctr = table.rows.length;
>  last_row = table.rows[actual_ctr - 1];

The table.rows isn't standard and isn't implemented on firefox.

rows = MochiKit.DOM.getElementsByTagAndClassName('tr',null,table);
actual_ctr = rows.length;
last_row = rows[actual_ctr -1];

--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to