Skip to content

Instantly share code, notes, and snippets.

@Dillie-O
Created May 13, 2014 21:33
Show Gist options
  • Save Dillie-O/7af848830f112b6252ef to your computer and use it in GitHub Desktop.
Save Dillie-O/7af848830f112b6252ef to your computer and use it in GitHub Desktop.
jQuery iFrame busting code - updates any links/forms to have iFrame busting target.
<script type="text/javascript">
$(document).ready(function() {
if(top.location != location) {
$('a, form').each(function() {
if(!this.target) {
this.target = '_top';
}
});
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment