0

How is it possible to show a loader whenever an iframe is loading.Even when links inside the iframe is clicked,the loader should be shown.

Piya
  • 1,134
  • 4
  • 22
  • 42

1 Answers1

0

if its in your own side you can use .contents() its give u all the nodes in the iframe or other element

  $("#iframe").contents().on('change',function(){
    $("#loader".fadeIn(35);
  });
  $("#iframe").contents().ready(function(){
    $("#loader".fadeIn(800);
  });

u can see : http://api.jquery.com/contents/

Hope that I helped you in this case!

Cuzi
  • 1,026
  • 10
  • 16