Using php, is there a way to refresh out of an iframe to a new url after a specified amount of seconds?
Ashley
Using php, is there a way to refresh out of an iframe to a new url after a specified amount of seconds?
Ashley
That is a Javascript question which should be posted in th Client Side Technologies forum.
But you can try this:
self.parent.location.href = 'http://www.google.com' ;
Other sites say:
window.parent.location.href
If that doesn't work, Google for: location iframe parent
Or it can be done in plain HTML:
<a href="http://google.co.uk" target="_parent">Google</a>
Edit: ooops, did not read the question. Oh well, I'll leave this here anyway