hola a todos tengo un script en el cual quieo que cierta funcion se cargue cada 10 segundo para eso empleo el evento window.onload.. pero no funciona, aqui les dejo el codigo para que lo vean saludos!
Código PHP:
<?php
require("sajax/php/Sajax.php");
function saludar($nombre){
return "Hola $nombre";
}
sajax_init();
sajax_export("saludar");
sajax_handle_client_request();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> sajax </title>
<script language="javascript">
<?php sajax_show_javascript(); ?>
window.onload = function(){ setInterval(function)(){generarSaludo()},10000)};
function contenedor(resultado){
alert(resultado);
}
function generarSaludo(){
var nombre = document.getElementById("nombre").value;
x_saludar(nombre,contenedor);
}
</script>
</head>
<body>
ingrese su nombre: <input type="text" name="nombre" id="nombre" value="" size="35">
<br /> y presione saludar: <input type="button" value="saludar" onclick="generarSaludo(); return false;">
</body>
</html>