JavaScript, чтобы предотвратить реализацию метода POST

$("#prospects_form").submit(function(e) {
    e.preventDefault();
});
Grumpy Gerenuk