Skip to content
Update JQuery authored by Joel H's avatar Joel H
...@@ -49,4 +49,7 @@ $('.solid').addClass('highlight'); //add the class highlight to every object wit ...@@ -49,4 +49,7 @@ $('.solid').addClass('highlight'); //add the class highlight to every object wit
.last() //last element .last() //last element
.prev() //previous element .prev() //previous element
.next() //next element .next() //next element
.parent() //get the parent element
.parents() //get all the parents of the element
.closest('class'); //get the closest element that have the class
``` ```
\ No newline at end of file