jQueryでサブミットハンドラーをトリガーしようとしているのですが、サブミットするとアクションページにいきます。私は何を間違っていますか?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<script>
$('#target').submit(function() {
alert('Handler for .submit() called.');
return false;
});
</script>
<form id="target" action="destination.html">
<input type="text" value="Hello there" />
<input type="submit" value="Go" />
</form>
<div id="other">
Trigger the handler
</div>
</body>
</html>