jQuery Method How to - Use css() to get CSS value








Question

We would like to know how to use css() to get CSS value.

Answer


<!-- w ww  .java2  s.  co  m-->
<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
             var color = $("b").css("background-color");
             console.log(color);
        });
    </script>
  </head>
  <body>
       <b>Hello</b>
  </body>
</html>

The code above is rendered as follows: