The only way to append a child doc element to a parent doc element, is to call the `first()` method. ```javascript var parent = doc('#parent'); var child = doc('#child'); // Error parent.append(child); // The only current possible way parent.append(child.first()); ```