I have a page which has the structure like this;
<body onLoad="LoadPage()">
<iframe src="pg1.html">
<p>Your browser does not support iframes.</p>
</iframe>
<iframe src="about:blank">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
Now on body load, I set the "src" value for the 2nd iframe. If I call body onload, the function seems to be getting called twice...So is there any other way by which I can call the function to set the src..
<script type="text/javascript">
function LoadPage(){
var pdfVal = document.forms[0].pdf_val.value;
document.getElementById('ipad_pdf_link').href = pdfVal;
}
</script>
LoadPage()and other scripts – ariel May 10 '11 at 8:50