Turn the div with index 2 blue by adding an appropriate class. : DIV « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- DIV
Turn the div with index 2 blue by adding an appropriate class.
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").eq(2).css("color","blue");
});
</script>
<style>
.selected { color:red; }
.highlight { background:yellow; }
</style>
</head>
<body>
<body>
<div id="single">asdf</div>
<div id="single">asdf</div>
<div id="single">asdf</div>
<div id="single">asdf</div>
</body>
</html>
Related examples in the same category