- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
Latest commit
16 lines (14 loc) · 433 Bytes
/
Copy pathsample.html
File metadata and controls
16 lines (14 loc) · 433 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<scripttype="text/javascript" src="jquery-1.6.1.js"></script>
<linkrel="stylesheet" type="text/css" href="sample.css" />
<p>Hello world!</p>
<ahref="#" class="trigger">Trigger</a>
<ahref="#" class="dostuff">Do Stuff</a>
<scripttype="text/javascript">
$('.trigger').click(function(){
$(this).fadeOut();
});
$('.dostuff').click(function(){
//console.log(this);
$(this).slideUp();
});
</script>