jQuery css( name, value ) Method

« Previous Chapter Next Chapter »

Description:

The css( name, value ) method sets a single style property to a value on all matched elements..

Syntax:

Here is the simple syntax to use this method:

Example

selector.css( name, value )
                                        

Parameters:

Here is the description of all the parameters used by this method:

  • name: The name of the property to be set.

  • value: The value of the property.

Example:

Example

<html>
<head>
   <script type="text/javascript"  src="../../js/jquery-2.2.0.js"></script>
   <script type="text/javascript" language="javascript">
   
   $(document).ready(function() {
     $("div").click(function () {
      var color = $(this).css("background-color");
      $("#result").html("That div is <span>" + color + "</span>.");
      $("#result").css("color", color);
    });
   });
   </script>
   <style>
      div { width:60px; height:60px; margin:5px; float:left; }
  </style>
</head>
<body>
   <p>Click on any square:</p>
   <span id="result"> </span>
   <div style="background-color:blue;"></div>
   <div style="background-color:rgb(15,99,30);"></div>
   <div style="background-color:#123456;"></div>
   <div style="background-color:#f11;"></div>
</body>
</html>
                                        
Code It Online

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!