Find the parent element of each paragraph with a class "selected". : Selector « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- Selector
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>
Related examples in the same category