Ver Mensaje Individual
  #14 (permalink)  
Antiguo 03/08/2012, 21:53
soulip
 
Fecha de Ingreso: junio-2012
Ubicación: caracas
Mensajes: 33
Antigüedad: 11 años, 10 meses
Puntos: 0
Respuesta: jquery y ajax no carga

Código Javascript:
Ver original
  1. function tabberAutomaticOnLoad(tabberArgs)
  2. {
  3.        
  4.        
  5.   /* This function adds tabberAutomatic to the window.onload event,
  6.      so it will run after the document has finished loading.
  7.   */
  8.   var oldOnLoad;
  9.  
  10.   if (!tabberArgs) { tabberArgs = {}; }
  11.  
  12.   /* Taken from: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */
  13.  
  14.   oldOnLoad = window.onload;
  15.   if (typeof window.onload != 'function') {
  16.   alert("llega aqui");
  17.    window.onload  = function() {
  18.       tabberAutomatic(tabberArgs);
  19.     };
  20.   } else { //document.ready window.onload
  21.     window.onload= function() {
  22.       oldOnLoad();
  23.       tabberAutomatic(tabberArgs);
  24.     };
  25.   }
  26. }
  27.  
  28.  
  29. /*==================================================*/
  30.  
  31.  
  32. /* Run tabberAutomaticOnload() unless the "manualStartup" option was specified */
  33.  
  34. if (typeof tabberOptions == 'undefined') {
  35.     alert("hola");
  36.     tabberAutomaticOnLoad();
  37.    
  38.  
  39. } else {
  40.  
  41.   if (!tabberOptions['manualStartup']) {
  42.   alert("hola1");
  43.     tabberAutomaticOnLoad(tabberOptions);
  44.   }
  45.  
  46. }
ese es el codigo si le doy a
Código PHP:
Ver original
  1. var 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