Skip to content
Permalink
Browse files
4321 returns empty jquery object
  • Loading branch information
rwaldron committed Jan 1, 2011
1 parent eed3803 commit 037d6bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
@@ -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 = /^.[^:#\[\.,]*$/,
@@ -12,7 +12,7 @@ test("Basic requirements", function() {
});

test("jQuery()", function() {
expect(24);
expect(25);

strictEqual( commonJSDefined, jQuery, "CommonJS registered (Bug #7102)" );

@@ -22,6 +22,7 @@ test("jQuery()", function() {
equals( jQuery(undefined).length, 0, "jQuery(undefined) === jQuery([])" );
equals( jQuery(null).length, 0, "jQuery(null) === jQuery([])" );
equals( jQuery("").length, 0, "jQuery('') === jQuery([])" );
equals( jQuery("#").length, 0, "jQuery('#') === jQuery([])" );

var obj = jQuery("div")
equals( jQuery(obj).selector, "div", "jQuery(jQueryObj) == jQueryObj" );

0 comments on commit 037d6bd

Please sign in to comment.