Cita:
Iniciado por patriciomase elem = document.getElementById(match[2]); <--- esa linea es la 164 de jquery, no es código mío
Código Javascript
:
Ver original} else {
elem = document.getElementById( match[2] );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document #6963
if ( elem && elem.parentNode ) {
// Handle the case where IE and Opera return items
// by name instead of ID
if ( elem.id !== match[2] ) {
return rootjQuery.find( selector );
}
// Otherwise, we inject the element directly into the jQuery object
this.length = 1;
this[0] = elem;
}
this.context = document;
this.selector = selector;
return this;
}
Si, pero el error sucede porque en alguna parte estás definiendo mal un selector por su id.
Fijate de bajar otra version de jQuery
http://blog.jquery.com/2012/08/30/jq...-8-1-released/