-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.html
77 lines (75 loc) · 2 KB
/
example.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css" media="screen">
.post {
padding: .5em;
border: 1px solid black;
}
.post h3 {
display: inline;
}
.post a {
float: right;
}
.post.focused {
background-color: lightblue;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="http://github.com/deadlyicon/selectors.js/raw/master/src/selectors.js" type="text/javascript" charset="utf-8"></script>
<script src="https://github.com/deadlyicon/selectors.js/raw/master/src/jquery.selectors.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
// register four selectors named posts, post, title, delete
S('body')
.down('posts','ul.posts')
.down('post','li.post')
.down('title','h3').end()
.down('delete','a.delete').end()
.end()
.end()
;
S('post')
.extend({
destroy: function(){
console.log('removing "'+this.down('title').text()+'"');
this.remove();
}
})
.mouseenter(function(e){
this.addClass('focused');
})
.mouseleave(function(e){
this.removeClass('focused');
})
.down('delete')
.click(function(e){
e.preventDefault();
this.up('post').destroy();
})
.end()
;
</script>
</head>
<body>
<ul class="posts">
<li class="post">
<h3>post 1</h3>
<a href="" class="delete">delete</a>
</li>
<li class="post">
<h3>post 2</h3>
<a href="" class="delete">delete</a>
</li>
<li class="post">
<h3>post 3</h3>
<a href="" class="delete">delete</a>
</li>
<li class="post">
<h3>post 4</h3>
<a href="" class="delete">delete</a>
</li>
</ul>
</body>
</html>