$(document).ready(function(){
$("#enviar").click(function(e){
e.preventDefault();
//prevent run 2 or more times if the user clicks the button multiple times to send
$.post(url,{data:data1,data2:data2},function(rp){
});
});
});
as prevent send 2 times the "post" if the user repeatedly click the button, without disabling the submit button