Ver Mensaje Individual
  #6 (permalink)  
Antiguo 20/01/2010, 10:14
mmejias
 
Fecha de Ingreso: julio-2009
Mensajes: 13
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Duda con validacion

Buenas... Creo haber encontrado el porqué no me arroja el resultado esperado... tengo problema con esta linea de codigo

Código Javascript:
Ver original
  1. var ajax = new sack();
  2.     var currentClientID = false;
  3.     var currentClientID2 = false;
  4.     function getClientData()
  5.     {
  6.         var clientId = document.getElementById('clientID').value.replace(/^0-9\.$/gi,'');
  7.         var clientId2 = document.getElementById('clientID2').value.replace(/^0-9\.$/gi,'');
  8.         if((clientId!=currentClientID) && (clientId2!=currentClientID2)){
  9.             currentClientID = clientId;
  10.             currentClientID2 = clientId2;
  11.             ajax.requestFile = 'b.php?getClientId='+clientId+'&getClientId2='+clientId2;
  12.             ajax.onCompletion = showClientData; // Specify function that will be executed after file has been found
  13.             ajax.runAJAX();     // Execute AJAX function           
  14.         }
  15.        
  16.     }
  17.    
  18.     function showClientData()
  19.     {
  20.         var formObj = document.forms['clientForm'];
  21.         eval(ajax.response); // Está funcion a mi parecer me esta dando problemas...
  22.     }
  23.    
  24.    
  25.     function initFormEvents()
  26.     {
  27.         document.getElementById('clientID').onblur = getClientData;
  28.         document.getElementById('clientID2').onblur = getClientData;
  29.         document.getElementById('clientID').focus();
  30.     }
  31.    
  32.    
  33.     window.onload = initFormEvents;

Para ver que me proponen para sustituir esa linea de codigo...