SO29143011

HTML

<input type="button" value="donate" class="edd-add-to-cart" />

JavaScript

function do_something() {
    alert("doing something");   
}

jQuery('.edd-add-to-cart').on('click', function (e) {
      var self = this;
      $(this).attr("disabled", "disabled");
      do_something();
      setTimeout(function () {
          $(self).removeAttr('disabled');
      }, 10000);
  });