Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/02/2013, 20:17
Avatar de patriciomase
patriciomase
 
Fecha de Ingreso: abril-2012
Ubicación: Mar del Plata
Mensajes: 323
Antigüedad: 12 años, 7 meses
Puntos: 34
Respuesta: warning: Cadena vacía pasada a getElementById()

Código Javascript:
Ver original
  1. // Handle HTML strings
  2.         if ( typeof selector === "string" ) {
  3.             // Are we dealing with HTML string or an ID?
  4.             if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
  5.                 // Assume that strings that start and end with <> are HTML and skip the regex check
  6.                 match = [ null, selector, null ];
  7.  
  8.             } else {
  9.                 match = quickExpr.exec( selector );
  10.             }

de acá sale match, expertos jquery ayuda