I hope someone can help me - I'm at the point of giving up. I've got a page, if the page gets selected I want the pdf document to load in a frame. Originally the code had a button where if you clicked it it opened the pdf '', I tried to change that so that if the page loads it must open the pdf but no luck. Please can someone help me?
<html>
<head><title>Body onload example</title>
</head>
<script type="text/javascript">
function openPdf()
{
var omyFrame = document.getElementById("myFrame");
omyFrame.style.display="block";
omyFrame.src = "myFile.pdf";
}
</script>
<body onload="openPdf();">
</body>