Quantcast
Channel: Últimos conteúdos
Viewing all articles
Browse latest Browse all 14190

Subimit form preload

$
0
0

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
});


Viewing all articles
Browse latest Browse all 14190