If the property name includes a "-", put it between quotation marks: : CSS « jQuery « JavaScript DHTML






If the property name includes a "-", put it between quotation marks:

 


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

                  $("p").css({ "background-color":"yellow", "font-weight":"bolder" });
        });
    </script>

  </head>
  <body>
    <body>
           <p>asdf</p>
                 
    </body>
</html>

   
  








Related examples in the same category

1.Change color for DIV
2.Change submit button background and border
3.Change background color
4.Change border style and cursor
5.Change CSS visibility to hide a tag
6.Remove style class
7.Looks for the class 'selected' on the matched elements.
8.Remove the class 'highlight' from the matched elements.
9.Remove two classes
10.Remove all the classes from the matched elements.
11.Toggle the class 'highlight' when a paragraph is clicked.
12.To access the background color of a clicked div.