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

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: 20-Jun-2020

876 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements