Find children elements
Description
The following code shows how to select tag inside another tag.
Example
<html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- w ww.j a va2 s . com-->
$("p").find("span").css('color', 'red');
});
</script>
</head>
<body>
<p>
<span>Hello</span>
</p>
</body>
</html>