Hi All,
I need help in solving how to automatically scroll content of an iFrame.
I want th iframe contant to be shown inside the frame without having to manually scroll down to it..
example code in iframe
<?
for( $i = 0; $i < 20; $i ++ ){
usleep(250000);
echo "$i<br>";
ob_flush();
flush();
}
?>
The iframe needs to auto scroll as the counter goes to 19
Hope it makes sence...
Thanks