Get background color

Description

The following code shows how to get background color.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from  w w w .j av a2s.c  o m-->
    var color = $("b").css("background-color");

    $("b").html("<span style='color:" +color + ";'>" + color + "</span>.");
  });
</script>
</head>
<body>
<body>
  Highlight all to see me. java2s.com
  <b style='background-color: red'>Hello</b>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities