From e2907620059b0dad91c2616345e8712ee256c622 Mon Sep 17 00:00:00 2001 From: Garret Kemp <34540202+GarretKemp@users.noreply.github.com> Date: Sat, 9 Mar 2019 07:06:17 +0900 Subject: [PATCH] Provided code solution to jQuery challenge : Change the CSS of an Element Using jQuery (#35293) * Update index.md * Update index.md --- .../index.md | 39 +++++++++++++++++-- 1 file changed, 36 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/front-end-libraries/jquery/change-the-css-of-an-element-using-jquery/index.md b/guide/english/certifications/front-end-libraries/jquery/change-the-css-of-an-element-using-jquery/index.md index a179049830..b6276e8371 100644 --- a/guide/english/certifications/front-end-libraries/jquery/change-the-css-of-an-element-using-jquery/index.md +++ b/guide/english/certifications/front-end-libraries/jquery/change-the-css-of-an-element-using-jquery/index.md @@ -3,8 +3,41 @@ title: Change the CSS of an Element Using jQuery --- ## Change the CSS of an Element Using jQuery -This is a stub. Help our community expand it. + - You can edit the CSS of an element using jQuery with the .css() function. + - In this example, it allows you to change the text color in the element with an id of "#target1". + +```html + -This quick style guide will help ensure your pull request gets accepted. + - +
+

jQuery Playground

+
+
+

#left-well

+
+ + + +
+
+
+

#right-well

+
+ + + +
+
+
+
+```