First, don't use a hyperlink <a> - use a submit button and style it to look like a hyperlink, like so.
Next, define a JavaScript event handler for the form's submit event. The event handler should use an XMLHttpRequest (AJAX) call to submit the form, update the button text, and cancel the form data submission. Something like this:
var myFormEl = document.getElementById("myForm");
myFormEl.onsubmit = function() {
var submitButtonEl = myFormEl.childNodes[4];
var message = myFormEl.childNodes[2].value;
var xhReq = new XMLHttpRequest();
xhReq.open("POST", "submit.php", true);
xhReq.onreadystatechange = function() { // this request is async
if (xhReq.readyState != 4) { return; }
// there should be some error-checking here
submitButtonEl.textContent = "Send";
alert("Your message has been submit");
};
var reqBody = "message="+encodeURIComponent(message);
xhReq.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhReq.setRequestHeader("Content-length", reqBody.length);
if(submitButtonEl.textContent) {
submitButtonEl.textContent = "Please wait...";
}
else {
submitButtonEl.innerText = "Please wait..."; // for different browsers
}
xhReq.send(reqBody);
return false; // cancel the form submission
};
An important point is that doing it this way - using a button and a JavaScript event handler that cancels the form submission - will degrade gracefully; if JavaScript is disabled - or if the JavaScript fails in some way - an old-fashioned form submission will still work.
You can see it in action on my web site.
documentinstead ofreturning it? I think I want to curl up and cry. – Quentin Oct 5 '12 at 15:46