What does the following jQuery code do? $(‘p’).next().css(‘color’, ‘red’); Mark as favorite Copy Link Selects all elements and sets their color to red. Selects the first element and sets its color to red. Selects the next sibling of each element and sets its color to red. Selects the parent of each element and sets its color to red. Check Answer