4321 returns empty jquery object

This commit is contained in:
rwldrn 2011-01-01 17:13:04 -05:00
parent eed3803c98
commit 037d6bd5c3
2 changed files with 4 additions and 2 deletions

View file

@ -17,7 +17,8 @@ var jQuery = function( selector, context ) {
// A simple way to check for HTML strings or ID strings
// (both of which we optimize for)
quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,
quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,
// Is it a simple selector
isSimple = /^.[^:#\[\.,]*$/,