- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery Misc toArray() Method
The toArray() method in jQuery is used to get all the DOM elements contained in the jQuery set, as an array
Syntax
The syntax is as follows −
$(selector).toArray()
Let us now see an example to implement the jQuery toArray() method −
Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ var arr = $("p").toArray() for (var k = 0; i< arr.length; k++) { alert(arr[k].innerHTML); } }); }); </script> </head> <body> <h2>Devices</h2> <p>This is demo text 1.</p> <p>This is demo text 2.</p> <p>This is demo text 3.</p> <p>This is demo text 4.</p> <button>GET each p value</button> </body> </html>
Output
This will produce the following output −
On clicking the button, alter box generates with the first p-value −
On clicking OK again, the 2nd p-value will be visible−
In the same way, other values will be visible on pressing an OK button in the alert box.
Advertisements