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,124
  • 4
  • 21
  • 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
  • 986
  • 8
  • 16