not(expr) removes elements matching the specified expression : not « jQuery « JavaScript Tutorial






<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>








30.71.not
30.71.1.Not ID
30.71.2.Not class
30.71.3.not(expr) removes elements matching the specified expression