--- title: Clone an Element Using jQuery --- # Clone an Element Using jQuery --- ## Problem Explanation 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. --- ## Hints ### Hint 1 For this challenge you will need to chain the .clone() and .appendTo() methods together. --- ## Solutions
Solution 1 (Click to Show/Hide) ```html

jQuery Playground

#left-well

#right-well

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