Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/08/2008, 09:34
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 5 meses
Puntos: 2135
Respuesta: Ajax + prototype con jsp

Hola cornmoster,

No puedes usar el atributo src="" y dentro de el javascript, tiene que ser por aparte:
Código:
<script src="prototype.js" type="text/javascript"></script>
<script type="text/javascript">
Event.observe( window, 'load', function() {
        new Ajax.PeriodicalUpdater('contenido', 'inbox.jsp' ,  { frequency:15} );
} );
</script>
Saludos.