From 48312b3ff964e81855444d193c4ef2338a44136e Mon Sep 17 00:00:00 2001 From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com> Date: Sat, 2 Mar 2019 02:03:52 +0530 Subject: [PATCH] fix(guide): Fix language names in jQuery section of guide (#35271) * Fix language names * Fix language name * Update index.md * Fix language names * Change javascript to js --- .../target-html-elements-with-selectors-using-jquery/index.md | 4 ++-- .../target-the-parent-of-an-element-using-jquery/index.md | 2 +- .../index.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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