Select headings
Description
The following code shows how to select Header element with header element selector $(":header").
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() {<!--from w w w. ja v a 2 s . c om-->
$(":header").css({
background : '#CCC',
color : 'blue'
});
});
</script>
</head>
<body>
<h1>Header 1</h1>
<p>Contents 1</p>
<h2>Header 2</h2>
<p>Contents 2</p>
</body>
</html>