$("#button").click(function(){
$("#button").attr("disabled",true);
$("#button").animate({opacity:0.2});
var nome = $("#nome").val();
var telefone = $("#tel").val();
var email = $("#email").val();
var onde = $("#onde").val();
......
)};
In IE and Firefox works fine, when I click the button it sends the data via jquery to a page and has to disable the button but does not send the data when it is through google chrome.