schubert plugin

ceng

Registered
Using the Schubert PDF Browser plugin v2.1 on Safari 1.2.4 on Mac 10.3.6.

Using ifames and the PDF gets loaded on my page but the onload event in the body tag does not get executed when I keep reloading the page (via a button). Does not happen if my iframe 'src' attribute is pointing to a html or just an empty string (""). Help anyone???

Here is my sample code

<html>
<body onload="test();">
<script langauge="javascript" type="text/javascript">

function test() {
alert("hey");
}
</script>
<form action="test.html">

<iframe name="iframe1" id="iframe1" frameborder="1" scrolling="auto" src="test.pdf" align="top">
</iframe>

hi there

<input type="submit" name="thebutton" value="press here"/>

</form>
</body>
</html>
 
Back
Top