blob: bda8a9d86fb84165861edf504e56ddb6d06bf9f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<script>
function showFrame(show) {
frame = document.getElementById("the_iframe");
frame.style.visibility = show ? "" : "hidden";
}
function showPlugin(show) {
iframe = document.getElementById("the_iframe").contentDocument;
iframe.getElementById("1").style.visibility = show ? "" : "hidden";
}
</script>
<iframe id='the_iframe' src='plugin_visibility_iframe.html'></iframe>
|