Did you notice this involves sticking two jQuery functions together? This is called <code>function chaining</code> and it's a convenient way to get things done with jQuery.
Clone your <code>target5</code> element and append it to your <code>left-well</code>.
- text: Your <code>target5</code> element should be inside your <code>right-well</code>.
testString: 'assert($("#right-well").children("#target5").length > 0, ''Your <code>target5</code> element should be inside your <code>right-well</code>.'');'
- text: A copy of your <code>target5</code> element should also be inside your <code>left-well</code>.
testString: 'assert($("#left-well").children("#target5").length > 0, ''A copy of your <code>target5</code> element should also be inside your <code>left-well</code>.'');'
- text: Only use jQuery to move these elements.
testString: 'assert(!code.match(/class.*animated/g), ''Only use jQuery to move these elements.'');'