diff --git a/guide/english/certifications/front-end-libraries/jquery/target-html-elements-with-selectors-using-jquery/index.md b/guide/english/certifications/front-end-libraries/jquery/target-html-elements-with-selectors-using-jquery/index.md index d95b9bc2b4..1c967bf81e 100644 --- a/guide/english/certifications/front-end-libraries/jquery/target-html-elements-with-selectors-using-jquery/index.md +++ b/guide/english/certifications/front-end-libraries/jquery/target-html-elements-with-selectors-using-jquery/index.md @@ -6,7 +6,7 @@ title: Target HTML Elements with Selectors Using jQuery - You can "find" (or select) HTML elements based on their name, id, classes, types, attributes, values of attributes and much more. ## Example -```javascipt +```js //You can select all

elements on a page like this = $("p") $(document).ready(function(){ $("button").click(function(){ @@ -17,7 +17,7 @@ title: Target HTML Elements with Selectors Using jQuery ## Solution -```javascript +```html