
29/01/2009, 12:54
|
 | | | Fecha de Ingreso: marzo-2008 Ubicación: Bogota
Mensajes: 858
Antigüedad: 17 años, 1 mes Puntos: 15 | |
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();
} |