Código Javascript
:
Ver originalfunction tabberAutomaticOnLoad(tabberArgs)
{
/* This function adds tabberAutomatic to the window.onload event,
so it will run after the document has finished loading.
*/
var oldOnLoad;
if (!tabberArgs) { tabberArgs = {}; }
/* Taken from: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */
oldOnLoad = window.onload;
if (typeof window.onload != 'function') {
alert("llega aqui");
window.onload = function() {
tabberAutomatic(tabberArgs);
};
} else { //document.ready window.onload
window.onload= function() {
oldOnLoad();
tabberAutomatic(tabberArgs);
};
}
}
/*==================================================*/
/* Run tabberAutomaticOnload() unless the "manualStartup" option was specified */
if (typeof tabberOptions == 'undefined') {
alert("hola");
tabberAutomaticOnLoad();
} else {
if (!tabberOptions['manualStartup']) {
alert("hola1");
tabberAutomaticOnLoad(tabberOptions);
}
}
ese es el codigo si le doy a
Código PHP:
Ver originalvar tabberOptions = {manualStartup:true};
no inicia pues en teoria tendria el control de inicio su supiera iniciarlo de nuevo jajaja pues la idea es que cuando el usuario lo traiga salga con el estilo de una vez muchas gracias y disculpen por insistir pero se nota que soy novato en el manejo de estos lenguajes gracias. ahsi ven alert por alli son expperimentos mios para ver a donde me llevaban