01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com jQuery Tutorials</title>
04.
<style>
05.
p { background:
#dad;
06.
font-weight:bold;
07.
font-size:16px; }
08.
</style>
09.
<script type=
"text/javascript"
src=
"jquery-1.6.4.js"
></script>
10.
<script type=
"text/javascript"
>
11.
$(document).ready(
function
(){
12.
13.
$(
"button"
).click(
function
() {
14.
$(
"p"
).toggle(
"slow"
);
15.
});
16.
17.
});
18.
</script>
19.
</head>
20.
<body>
21.
22.
<button>Toggle 'em</button>
23.
24.
<p>Hiya</p>
25.
<p>Such interesting text, eh?</p>
26.
27.
</body>
28.
</html>