forked from bitovi/jquerypp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtap.html
More file actions
33 lines (33 loc) · 850 Bytes
/
tap.html
File metadata and controls
33 lines (33 loc) · 850 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 PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>select</title>
<style type='text/css'>
body {font-family: verdana}
.error {border: solid 1px red;}
.error_text { color: red; font-size: 10px;}
td {padding: 3px;}
.selected {
background-color: blue;
}
#tap {
height: 500px;
width: 500px;
background-color: blue;
display: block;
}
</style>
</head>
<body>
<a href='javascript://' id='tap'>I'd Tap That</a>
<script type='text/javascript'
src='../../../steal/steal.js?steal[app]=jquery/event/tap'>
</script>
<script type='text/javascript'>
$('#tap').bind('tap', function(){
console.log('tap')
})
</script>
</body>
</html>