Sets the background color of the page to black : document « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <style type="text/css">
        .changeP { font-weight: bold; color:red;}
    </style>

    <script type="text/javascript">
   $(document).ready(function(){
     $(document.body).css( "background", "black" );



   });

    </script>
  </head>
  <body>

   <form>
      <input type="radio" value="Option">
   </form>

  </body>
</html>








30.31.document
30.31.1.Sets the background color of the page to black
30.31.2.Get document width
30.31.3.Document height
30.31.4.Get elements in body tags
30.31.5.Reference document.body