Skip to content

Instantly share code, notes, and snippets.

@handleman
Created September 3, 2014 13:38
Show Gist options
  • Select an option

  • Save handleman/6289dfc666cc13ee3800 to your computer and use it in GitHub Desktop.

Select an option

Save handleman/6289dfc666cc13ee3800 to your computer and use it in GitHub Desktop.
How to reload iFrame using jQuery
//reload 1 iframe
$('#iframe')[0].contentWindow.location.reload(true);
//reload all iFrames
$('iframe').each(function() {
this.contentWindow.location.reload(true);
});
//Another way to reload all iFrames
$('iframe').attr('src', $('iframe').attr('src'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment