Adds a border to divs that are not green : DIV « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- DIV
Adds a border to divs that are not green
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").not(".green").css("color", "red");
});
</script>
</head>
<body>
<body>
<div id="results">asdf</div>
</body>
</html>
Related examples in the same category