Skip to content
Update JQuery authored by Joel H's avatar Joel H
......@@ -54,6 +54,9 @@ $('.solid').addClass('highlight'); //add the class highlight to every object wit
.parent() //get the parent element
.parents() //get all the parents of the element
.closest('class'); //get the closest element that have the class
.append(); //to add after the end
.prepend(); //to add before the debut
```
```javascript
......
......