adelante,
Как я понимаю, используете
этот плагин. Ошибка говорит о том, что плагин не подключен, но вы пытаетесь его использовать. Проверьте, правильно ли вы его подключили:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.js"></script>
<script src="http://malsup.github.com/jquery.form.js"></script>
<script>
// wait for the DOM to be loaded
$(document).ready(function() {
// bind 'myForm' and provide a simple callback function
$('#myForm').ajaxForm(function() {
alert("Thank you for your comment!");
});
});
</script>
</head>