Nieuw lid |
|
Hallo allemaal.
ik heb onderstaande pagina die netjes om de twee seconde de content vernieuwd.
<?
function printBeurs()
{
include("ajaxoutp.php");
}
// include the framework base..
include_once("agent.php");
// init the framework..
$agent->init();
?>
<html>
<head>
<title>Drankbeurs</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script>
function call_printBeurs() {
agent.call('','printBeurs','callback_printBeurs');
setTimeout('call_printBeurs()',2000);
}
function callback_printBeurs(str) {
document.getElementById('divBeurs').innerHTML = str;
}
function init() {
call_printBeurs();
}
</script>
<body onLoad="init()" scroll=no>
<center>
<div id='divBeurs'></div>
</center>
</body>
</html>
<? function printBeurs() { include("ajaxoutp.php"); } // include the framework base.. include_once("agent.php"); // init the framework.. $agent->init(); ?> <html> <head> <title>Drankbeurs</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <script> function call_printBeurs() { agent.call('','printBeurs','callback_printBeurs'); setTimeout('call_printBeurs()',2000); } function callback_printBeurs(str) { document.getElementById('divBeurs').innerHTML = str; } function init() { call_printBeurs(); } </script> <body onLoad="init()" scroll=no> <center> <div id='divBeurs'></div> </center> </body> </html>
nu wil ik er een autoupdate bijplaatsen die om de 10 seconde een andere div content update.
Als ik bovenstaande javascript twee maal in het script plaats geeft hij alleen de laatste div weer.
Citaat: Rens edit:
Codetags!!!
|