Показать сообщение отдельно
  #8 (permalink)  
Старый 20.12.2013, 13:12
без статуса
Отправить личное сообщение для Deff Посмотреть профиль Найти все сообщения от Deff
 
Регистрация: 25.05.2012
Сообщений: 8,219

Сообщение от Skyhawk
TypeError: document.getElementByID is not a function
document.getElementByID('frame1').src="source.html ?"+(+new Date())
Пробуйте так
<script type="text/javascript">
 function refreshIFrame(sel) {
   setTimeout(function(){sel.src="source.html?"+(+new Date());},2000);
}
 </script>
<iframe src="source.html" name="MainFrame" height="100" width="100" frameborder="0" scrolling="no" onload="refreshIFrame(this)"> </iframe>
Ответить с цитированием