- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompoundcssselector.php
More file actions
Latest commit
33 lines (32 loc) · 677 Bytes
/
Copy pathcompoundcssselector.php
File metadata and controls
33 lines (32 loc) · 677 Bytes
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
26
27
28
29
30
31
32
33
<!doctype html>
<html>
<head>
<metacharset="utf-8">
<title>
WorkingwithSelectors
</title>
<style>
.effects{
color:violet;
text-decoration:underline;
border: 2pxsolidpink;
font-style:oblique;
};
</style>
<scriptsrc="https://code.jquery.com/jquery-1.10.2.js">
</script>
<body>
<divid="divId">
<h3>FirstHeading</h3>
<h3>SecondHeading</h3>
<h3class="h3class">ThirdHeading</h3>
<h3>FourthHeading</h3>
</div>
<h3class="myclass">OutsideHeading</h3>
<script>
//$("#divId h3.h3class").text("changed Heading").addClass("effects");
//comma seperated list of selectors
$("#divId h3.h3class,h3.myclass").text("changed heading").addClass("effects");
</script>
</body>
</html>