Loop Through All Iframe 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

Live Demo

<!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>
Updated on: 2020-06-20T07:22:57+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements