-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting resizable frames.html
More file actions
41 lines (36 loc) · 1.21 KB
/
Copy pathtesting resizable frames.html
File metadata and controls
41 lines (36 loc) · 1.21 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
<html>
<head>
<link rel="stylesheet" href="T10-Splitter.css" />
<link rel="stylesheet" href="testing resizable frames.css">
<script src="testing resizable frames.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ"
crossorigin="anonymous">
</script>
<script src="jquery-linedtextarea.js"></script>
<link href="jquery-linedtextarea.css" rel="stylesheet">
</head>
<body onload="onload()">
<div class="splitter">
<div id="first">
<textarea class="lined" id="text-box"></textarea>
</div>
<div id="separator"></div>
<div id="second">
<textarea class="lined" id="text-box"></textarea>
</div>
</div>
<script>
$(function() {
$(".lined").linedtextarea();
});
</script>
<!-- <script>
$(function() {
$(".lined").linedtextarea({
selectedLine: 10
});
});
</script> -->
</body>
</html>