#jQuery #jQuery/Method/.addBack() - method to select the currently selected element as well as the previously selected element .addBack() .addBack() allows the previously selected element to be selected along with the currently selected element. Grammar .addBack( [selector ] ) for example $( 'ul' ).find( 'li' ).addBack() selects li among the children of ul, and selects the first selected ul. exa..