Thread
:
'TypeError: xxx is not a function' is thrown only in Firefox
View Single Post
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
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
View Public Profile
Find More Posts by venegal