From 80d7e048acf295e0b2d841aa3a93715a8200d587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoelvis=20=20Jim=C3=A9nez?= <43357527+yoelvisj@users.noreply.github.com> Date: Mon, 15 Oct 2018 23:12:28 -0400 Subject: [PATCH] Update solution to challenge (#18946) 1. I added the line `$("#target4").html("#target4");` to solve the challenge. 2. I added link to official documentation and the freeCodeCamp guide. --- .../index.md | 41 ++++++++++++++++++- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/client/src/guide/english/certifications/front-end-libraries/jquery/change-text-inside-an-element-using-jquery/index.md b/client/src/guide/english/certifications/front-end-libraries/jquery/change-text-inside-an-element-using-jquery/index.md index 388c6b95a9..d4aae524b2 100644 --- a/client/src/guide/english/certifications/front-end-libraries/jquery/change-text-inside-an-element-using-jquery/index.md +++ b/client/src/guide/english/certifications/front-end-libraries/jquery/change-text-inside-an-element-using-jquery/index.md @@ -3,8 +3,45 @@ title: Change Text Inside an Element Using jQuery --- ## Change Text Inside an Element Using jQuery -This is a stub. Help our community expand it. +### Solution: -This quick style guide will help ensure your pull request gets accepted. +```javascript + + + + +
+

jQuery Playground

+
+
+

#left-well

+
+ + + +
+
+
+

#right-well

+
+ + + +
+
+
+
+``` + +### More information: + ++[.html() | jQuery API Documentation](http://api.jquery.com/html/) + ++[jQuery HTML Method](https://guide.freecodecamp.org/jquery/jquery-html-method)