});
test("id", function() {
- expect(27);
+ expect(28);
t( "ID Selector", "#body", ["body"] );
t( "ID Selector w/ Element", "body#body", ["body"] );
t( "ID Selector w/ Element", "ul#first", [] );
t( "Underscore ID", "#types_all", ["types_all"] );
t( "Dash ID", "#fx-queue", ["fx-queue"] );
+
+ t( "ID with weird characters in it", "#name\\+value", ["name+value"] );
});
test("class", function() {
});
test("name", function() {
- expect(9);
+ expect(11);
t( "Name selector", "input[name=action]", ["text1"] );
t( "Name selector with single quotes", "input[name='action']", ["text1"] );
isSet( jQuery("#form").find("input[name=action]"), q("text1"), "Name selector within the context of another element" );
isSet( jQuery("#form").find("input[name='foo[bar]']"), q("hidden2"), "Name selector for grouped form element within the context of another element" );
+
+ var a = jQuery('<a id="tName1ID" name="tName1">tName1 A</a><a id="tName2ID" name="tName2">tName2 A</a><div id="tName1">tName1 Div</div>').appendTo('#main');
+
+ t( "Find elements that have similar IDs", "[name=tName1]", ["tName1ID"] );
+ t( "Find elements that have similar IDs", "[name=tName2]", ["tName2ID"] );
+
+ a.remove();
});