Подскажите, как достучаться к переменной seconds на странице, которая запускается во фрейме?
<iframe src="/a.htm" style="width:100%; height:500px;" scrolling="no" marginheight="0" marginwidth="0" frameborder="0"></iframe>
unsafeWindow.seconds пишет что переменная не определена.
Переменная определяется так:
<script language="javascript">
document.getElementById('value').focus();
var seconds = 30;
function display_countdown()
{
if( seconds < 0 ) {
seconds = 0;
}
document.getElementById('countdown').innerHTML = 'Countdown: <strong>' + seconds + '</strong>';
seconds--;
setTimeout( "display_countdown()", 1000 );
}
display_countdown();