diff --git a/guide/english/certifications/front-end-libraries/jquery/clone-an-element-using-jquery/index.md b/guide/english/certifications/front-end-libraries/jquery/clone-an-element-using-jquery/index.md index 289a8f6340..ace3a43288 100644 --- a/guide/english/certifications/front-end-libraries/jquery/clone-an-element-using-jquery/index.md +++ b/guide/english/certifications/front-end-libraries/jquery/clone-an-element-using-jquery/index.md @@ -3,8 +3,49 @@ title: Clone an Element Using jQuery --- ## Clone an Element Using jQuery -This is a stub. Help our community expand it. +In the last challenge we used the .appendTo() method in order to move one element into another, this challenge introduces the .clone() method which enables us to work with a copy of an element without altering the original. -This quick style guide will help ensure your pull request gets accepted. +### Hint - +For this challenge you will need to chain the .clone() and .appendTo() methods together. + +### Solution + +```html + + + + +
+

jQuery Playground

+
+
+

#left-well

+
+ + + +
+
+
+

#right-well

+
+ + + +
+
+
+
+``` + +### Sources +1. [For more information on .clone() visit jQuery's documentation.](https://api.jquery.com/clone/)