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>