Select elements under an element
Description
The following code shows how to select elements under an element.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- ww w . j a va2s .c o m-->
$("#main > *").css("border", "3px solid red");
});
</script>
</head>
<body>
<span id="main">
<div>asdf</div>
<button>Child</button> <span>A Span</span>
</span>
</body>
</html>