Find the parent element of each paragraph with a class "selected".
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").parent(".selected").css("background", "yellow"); }); </script> </head> <body> <body> <div><p>Hello</p></div> <div class="selected"><p>Hello Again</p></div> </body> </html>