Função reload em JS
Recentemente precisei fazer uma página que tinha um iframe embutido e eu precisa recarregar aquele iframe dado um certo momento.
Segue o código para dar um refresh no iframe usando JavaScript:
Value of parameter:
false - Default. Reloads the page from the browser cache.
true - Reloads the page from the server.
Mais informacões:
http://msdn2.microsoft.com/en-us/library/ms536691.aspx
Segue o código para dar um refresh no iframe usando JavaScript:
var f = document.getElementById('iframe1');
f.contentWindow.location.reload(true);
Value of parameter:
false - Default. Reloads the page from the browser cache.
true - Reloads the page from the server.
Mais informacões:
http://msdn2.microsoft.com/en-us/library/ms536691.aspx
Marcadores: html, javascript, programação