-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest.html
41 lines (37 loc) · 1.08 KB
/
test.html
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>
<title>jquery-safeform</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="jquery.safeform.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#testsafe').safeform({
timeout: 3000, // auto refresh after 3 sec.
submit: function(e) {
var name = $('#firsname').val();
if (name !== '') {
$('#firsname').val('');
$('#testresults').append($('<div><b>' + name + '</b> <small>submitted at ' + e.timeStamp + '</small></div>'));
// emulate waiting...
for (var i=0; i < 500000; i++) {
$.isFunction($('#testresults'));
}
}
// manual complete, reenable form ASAP
//$('#testsafe').safeform('complete');
return false; // revent real submit
}
});
});
</script>
</head>
<body>
<form id="testsafe" action="/">
<div>
<input id="firsname" name="firsname" type="text">
<input type="submit" onclick="javascript: $('#testsafe').submit();">
</div>
</form>
<div id="testresults"></div>
</body>
</html>