Side navigation
Ticket #3675: test-3675.html
File test-3675.html, 0.6 KB (added by dmethvin, January 31, 2009 05:44PM UTC)
test of form reset event
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="jquery-1.3.1-test.js"></script>
<script>
$(document).ready(function(){
$("form").bind("reset", function(){ alert("reset") });
});
</script>
<style>
</style>
</head>
<style>
</style>
<body>
<form>
<input name="field1" value="value1" />
<input type="reset" name="wipit" value=" reset " />
</form>
</body>
</html>
Download in other formats:
Original Format
File test-3675.html, 0.6 KB (added by dmethvin, January 31, 2009 05:44PM UTC)
test of form reset event
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="jquery-1.3.1-test.js"></script>
<script>
$(document).ready(function(){
$("form").bind("reset", function(){ alert("reset") });
});
</script>
<style>
</style>
</head>
<style>
</style>
<body>
<form>
<input name="field1" value="value1" />
<input type="reset" name="wipit" value=" reset " />
</form>
</body>
</html>