Como posso fazer um preload nesse código em Jquery?
Tenho esse código:
$("form").submit(function() { $.post($(this).attr("action"), $(this).serialize(), function(data) { $("#formulario_envio").html(data); }); return false; // prevent normal submit });