DimisD Posted February 21, 2007 Share Posted February 21, 2007 Hi there, Can somebody please fix the code bellow? I have 2 iframes and i want to reload them with the buttons bellow them. Also, if it is easy, i wonder if you can make three more functions : refresh, history+, history- thank you! <html> <head> <script type="text/javascript"> function Reload () { var f = document.getElementById('iframe1'); f.src = f.src; } </script> </head> <body> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><iframe name="iframe1" id="iframe1" height="200" width="300" src="http://www.cnn.com"></iframe></td> <td><iframe name="iframe2" id="iframe2" height="200" width="300" src="http://www.bbc.co.uk"></iframe></td> </tr> <tr> <td><input name="button1" type="button" onClick="Reload();" value="Reload"> </td> <td><input name="button2" type="button" onClick="Reload();" value="Reload"> </td> </tr> </table> <p> </p> </body> </html > Link to comment https://forums.phpfreaks.com/topic/39482-reload-refresh-multiple-iframes/ Share on other sites More sharing options...
fenway Posted February 21, 2007 Share Posted February 21, 2007 f.src = f.src doesn't actually do anything -- go via about:blank and it'll work. Link to comment https://forums.phpfreaks.com/topic/39482-reload-refresh-multiple-iframes/#findComment-190789 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.