summaryrefslogtreecommitdiffstats
path: root/jquery-text-n-html-funcs.xhtml
blob: c4bba656213d7f5b873c3779ba35f3ddb8e37de5 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!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>text() and html()</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="jquery-2.0.2.js"></script>
<script type="text/javascript">
  <![CDATA[
    function purgeList() {
        $("#list1").html("<li>all gone</li>");
        $("#cpanel").text("let them have it!");
    }

    $("document").ready(function() {
        <!-- selector 'a' is next to the filter, $= denotes 'ends with' -->
        $("a[href$=\\.mp3]").after(" <img src='small-mp3.png' />");
    });
  ]]>
</script>
</head>
<body>
<h2>Inventory:</h2>
<ul id="list1">
    <li><a href="foo.mp3">Van Halen - Panama</a></li>
    <li><a href="foo.pdf">NPN 4401 BJT Transistor</a></li>
    <li><a href="foo.pdf">All That Remains - Empty Inside</a></li>
    <li><a href="foo.mp3">Led Zeppelin - Stairway To Heaven</a></li>
    <li><a href="foo.html">Boobs</a></li>
    <li><a href="foo.html">Spam</a></li>
    <li><a href="foo.mp3">Pink Floyd - On The Run</a></li>
</ul>
<h2 style="color: red">Admin:</h2>
<p id="cpanel">Control panel, click to inform customers</p>
<button type="button" onclick="purgeList();">Sold Out</button>
</body>
</html>