-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest.html
More file actions
33 lines (33 loc) · 1.01 KB
/
test.html
File metadata and controls
33 lines (33 loc) · 1.01 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
<html>
<head>
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/jquery.form.js"></script>
<script>
$(document).ready(function() {
$('#comment_form').ajaxForm(function() {
console.log('submitted');
});
console.log('ajaxed');
});
</script>
</head>
<body>
Code
<form action="do/newcode" method="POST">
<textarea name="text"
cols="80"
style="height:90%;font-size:14pt" class="pre">
</textarea><br>
<input type="submit">
</form><br>
Comment
<form id="comment_form" method="POST" action="do/newcomment">
ID:<input type="text" name="code_id" id="code_id" value="-1"><br>
Start:<input type="text" name="line_start" id="line_start" value="-1"><br>
End:<input type="text" name="line_end" id="line_end" value="-1"><br>
User:<input id="user" type="text" name="user" value="Anonymous"><br>
<textarea id="text" name="text"></textarea><br>
<input type="submit">
</form>
</body>
</html>