user909058
user909058

Reputation: 188

What is object nodelist

"[object NodeList]"

What is represented by the above in javascript?

I am firing the onkeypress event on a textbox, which depends over the value returned by various id of related radio buttons. When I fire the alert over the id, I get the above in the alert box.

Upvotes: 0

Views: 360

Answers (1)

xdazz
xdazz

Reputation: 160943

[object NodeList], object means it is an object, NodeList is the interface the object implements. So it means it is a NodeList object.

Upvotes: 2

Related Questions