Jump to content

Reload - Refresh multiple iframes


DimisD

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.