jQuery Misc toArray() Method
jQuery Misc Methods
Example
Convert the <li> elements to an array, then alert the innerHTML of the array elements:
$("button").click(function(){
x=$("li").toArray()
for (i=0;i<x.length;i++)
{
alert(x[i].innerHTML);
}
});
Try it yourself »
Definition and Usage
The toArray() method returns the elements matched by the jQuery
selector as an array.
Syntax
jQuery Misc Methods
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]