Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/05/2010, 14:57
Avatar de Marvin
Marvin
Colaborador
 
Fecha de Ingreso: febrero-2005
Ubicación: global $Chile->Santiago;
Mensajes: 1.991
Antigüedad: 20 años, 2 meses
Puntos: 81
Respuesta: llamar a una function de javascript...

Ojo que esto si funciona:
Código PHP:
<html>
<head>
<script language="Javascript">
    function test(){
        alert("Hola");
    }
</script>
</head>
<body>
<?php
echo '
<script language="Javascript">
    test();
</script>'
;
?>
</body>
</html>
Suerte!
__________________
El que dice "Solo sé que nada sé", esta asumiendo que sabe algo.
Lea las FAQ's!