JavaScript Programming
JavaScript > Code Examples
Selects all paragraphs, finds span elements inside these, and reverts the selection back to the...
Selects all paragraphs, finds span elements inside these, and reverts the selection back to the...
<html>
<head>
<title>Happy Codings :-) Javascript Programming Code Examples</title>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").find("span").end().css("border", "2px red solid");
});
</script>
<style>
.selected { color:blue; }
</style>
</head>
<body>
<p><span>Hello</span>, how are you?</p>
</body>
</html>