View Single Post
Old 01-29-2011, 09:33 PM   PM User | #2
venegal
Gütkodierer


 
Join Date: Apr 2009
Posts: 2,127
Thanks: 1
Thanked 426 Times in 424 Posts
venegal has a spectacular aura aboutvenegal has a spectacular aura about
You're trying to call it like a function (with parentheses), but it isn't a function, hence the error.

What you really want to do is access the entries of an array-like object, and that you do with brackets:

Code:
alert(trows[i].id);
venegal is offline   Reply With Quote