Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/02/2011, 19:39
Avatar de goteen_mx
goteen_mx
 
Fecha de Ingreso: abril-2005
Ubicación: D.F.
Mensajes: 403
Antigüedad: 19 años, 7 meses
Puntos: 37
Respuesta: Duda tiempo de ejecucion de fuciones

Primero se ejecuta funcion() y luego función2

es como si tuvieras en código esto:
Código Javascript:
Ver original
  1. funtion funcionGlobal(){
  2.    funcion();
  3.     funcion2();
  4. }
  5.    
  6.       <input type="button" value="funciones" onclick="funcionGlobal();" />

Saludos.