Сообщение от tai
|
Как отменить отправку формы
|
Вроде все просто...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(function (){
$('form').submit(function (){
alert('No');
return false;
});
});
</script>
</head>
<body>
<form>
<input type='text' />
<input type='submit' value='Send' />
</form>
</body>
</html>