-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.htm
23 lines (23 loc) · 977 Bytes
/
test.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>jEditUndo Test</title>
<link rel="stylesheet" type="text/css" href="test.css" />
</head>
<body>
<div id="wrapper">
<div id="content">
<div id="testDivs">
<div id="testDiv-text" class="testDiv">Editable text</div>
<div class="testDiv">The area above has both a custom plugin and a custom onsubmit function attached.</div>
<div id="testDiv-textarea" class="testDiv">Editable text area</div>
<div id="testDiv-select" class="testDiv">Editable with select</div>
</div>
<p><button id="undoButton">Undo</button><span id="spacerDiv"></span><button id="redoButton">Redo</button></p>
</div></div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="jsundoable.js"></script>
<script type="text/javascript" src="jquery.jeditable.js"></script>
<script type="text/javascript" src="jEditUndo.js"></script>
<script type="text/javascript" src="test.js"></script>
</body>
</html>