Используйте это
...
$('.formulario').submit(function (event)
{
event.preventDefault(); // This will stop the form from submitting.
...
return false; // Should also stop the form from submitting, but have ran into cases where it does not. Still, include it for good measure.
}
Вот некоторые дополнительные вещи, которые следует иметь в виду в отношении аргумента события:
event.preventDefault() // Stops default actions, link redirection, form submission, etc...
event.stopPropagation() // Stops the event from propagating up the DOM tree.
event.stopImmediatePropagation() // Stops the current event and ALL other events on the element from propagating any further up the DOM tree.
Дополнительную информацию о распространении событий в JQuery смотрите здесь: http://www.c -sharpcorner.com / UploadFile / satisharveti / 665 / Default.aspx