Hey... just found a quick way to do this...
Hope this code helps people. Just put it in the <HEAD> section of the page that you wish to control the submit button...
$(":submit").click(function(){
$(this).attr('disabled', 'disabled').val('Please wait...');
});