15 lines
669 B
HTML
15 lines
669 B
HTML
<script>
|
|
function cleanContent()
|
|
{
|
|
var $iFrameContents = $('iframe').contents(),
|
|
$entryContent = $iFrameContents.find('div.file-view');
|
|
$iFrameContents.find('html').replaceWith($entryContent);
|
|
// Next restore the style-sheets
|
|
var stylesheet = $('iframe').contents().find('link[rel="stylesheet"]').prependTo($iFrameContents.find('div.file-view'));
|
|
}
|
|
$('iframe').load( function(){
|
|
//put your iframe code here
|
|
cleanContent();
|
|
});
|
|
</script>
|
|
<iframe width="100%" height="100%" src="https://git.software.kauripeak.co.nz/BrychanD/JavaECS-Docs/src/branch/master/README.md" frameborder="0"></iframe> |