On a lot of sites lately, I\'ve seen buttons being replaced with loading/thinking images after they are pressed, to prevent double clicks and make sure the user knows something
Use .replaceWith():
.replaceWith()
$(".submitButton").click(function () { $(this).replaceWith(""); });