Children from DIV : children « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- children
Children from DIV
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").children().css("border", "3px double red");
});
</script>
</head>
<body>
<body>
<div><span>span</span>div</div>
</body>
</html>
Related examples in the same category