Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
English
In Dashboard Menu, go to Custom Header and add the following code.
Code Block
languagexml
<script type="text/javascript">
$(function(){
	//iterate thru iframe elements
	//$("iframe").each(function(){
	//wait for iframe to load is a better idea
	$('iframe').on('load', function(){
    	$(this).contents().find("a").attr("target", "_top");
	});
});
</script>

...