Missing HTML5 Audio tag in iframe
http://stackoverflow.com/questions/14378529/audio-tag-does-not-appear-after-hiding-and-showing-an-iframe-again
HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
function toggle() {
var $el = $('#page');
if ($el.is(':visible')) {
$el.hide();
} else {
$el.show();
}
}
</script>
</head>
<body>
<button onclick="toggle();">Toggle Iframe</button>
<iframe id='page' src='http://www.quackit.com/common/html_editor_form.cfm?contentFile=../html_5/tags/inc_html_audio_tag.cfm' width="100px" frameborder='1'></iframe>
</body>
</html>