Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to loop through all the iframes elements of a page using jQuery?
To loop through all the iframes element of a page, use the jQuery each() method. You can try to run the following code to learn how to loop through all iframes. We have created three iframes below −
Example
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("iframe").each(function(){
alert($(this).text())
});
});
});
</script>
</head>
<body>
<iframe src="https://www.qries.com">Qries Q/A</iframe>
<iframe src="https://tutorialspoint.com">Tutorialspoint Free Learning</iframe>
<iframe src="https://sendfiles.net">Send Files</iframe><br>
<button>Loop through iFrames</button>
</body>
</html> Advertisements
