This repository was archived by the owner on May 26, 2025. It is now read-only.
forked from bitovi/jquerypp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselection.html
More file actions
56 lines (55 loc) · 1.39 KB
/
selection.html
File metadata and controls
56 lines (55 loc) · 1.39 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>selection</title>
<style type='text/css'>
body {font-family: verdana}
.error {border: solid 1px red;}
.error_text { color: red; font-size: 10px;}
td {padding: 3px;}
</style>
</head>
<body>
<table id="demo-html">
<tr>
<td> <a href="javascript://" id='textarea'>Select Textarea</a></td>
<td><textarea id=''>012
456</textarea></td>
</tr>
<tr>
<td><a href="javascript://"
id='input'>Select Input</a></td>
<td><input text='text' value='0123456789'/></td>
</tr>
<tr>
<td><a href="javascript://"
id='p'>Select Within One Element</a></td>
<td><p id='1'>0123456789</p></td>
</tr>
<tr>
<td><a href="javascript://"
id='multi'>Select Across Multiple Elements</a></td>
<td><div id='2'>012<div>3<span>4</span>5</div></div></td>
</tr>
</table>
<script type='text/javascript'
src='../../../steal/steal.js'></script>
<script type='text/javascript'>
steal('jquery/dom/selection', function(){
$('#textarea').click(function(){
$('textarea').selection(1,5);
})
$('#input').click(function(){
$('input').selection(1,5);
})
$('#p').click(function(){
$('#1').selection(1,5);
})
$('#multi').click(function(){
$('#2').selection(1,5);
})
});
</script>
</body>
</html>