summaryrefslogtreecommitdiffstats
path: root/jquery-css-addclass.xhtml
blob: e92bd91dede9eb6fcf0735670c84238df53d0095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>append css class to a selector</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
  .p_background {
    background-color: cyan;
  }
</style>
<script type="text/javascript" src="jquery-2.0.2.js"></script>
<script type="text/javascript">
  <![CDATA[
    $("document").ready(function() {
        $("p:last").addClass("p_background");
    });
  ]]>
</script>
</head>
<body>
<p id="pmain">goodbye, world!</p>
</body>
</html>