Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/06/2008, 01:25
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años, 1 mes
Puntos: 772
Respuesta: problemas con llamados a funciones

Hola lkas. Bienvenido al foro.

Sin ver el código, es difícil saber qué es lo que falla. Prueba este sencillo ejemplo, a ver si te orienta:

Código:
<html>
<head>
</head>
<script type="text/javascript">
function funcion1() {
  funcion2();
}
function funcion2() {
  alert('Hola');
}
</script>
<body>
<input type="button" onclick = "funcion1()" />
</body>
</html>
Saludos,