Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/01/2009, 12:54
Avatar de SPAWN3000
SPAWN3000
 
Fecha de Ingreso: marzo-2008
Ubicación: Bogota
Mensajes: 858
Antigüedad: 16 años, 2 meses
Puntos: 15
Pregunta Acceder a funcion interna

Como acceder directamente ha esta funcion?

window.onload = function() {
barrioSesamo.epi();

}

function barrioSesamo() {
function epi() {
alert('hola Blas');
}
function blas() {
alert('hola Epi');
}

//epi();
blas();
}