diff --git a/page/using-jquery-core/selecting-elements.md b/page/using-jquery-core/selecting-elements.md index 1e750b44..0dafe422 100644 --- a/page/using-jquery-core/selecting-elements.md +++ b/page/using-jquery-core/selecting-elements.md @@ -16,7 +16,7 @@ $("#myId"); // note IDs must be unique per page ``` // Selecting elements by class name -$("div.myClass"); // performance improves if you specify element type +$(".myClass"); ``` ## Selecting Elements by Attribute