jQuery(document).ready(function($){
/*  THESE TWO ONLY WORK 1ST TIME
$(".remove").click(function(e){  //'remove' is the class on the 'x' to delete products from the cart
$(".woocommerce-error").remove();
e.preventDefault();
});
$(".button").click(function(e){ //'button' is the class for the 'apply coupon' and 'update cart' buttons
$(".woocommerce-error").remove();
e.preventDefault();
});
*/
$(document).delegate('.remove', 'click', function(){
$(".woocommerce-error").remove();
});
$(document).delegate('.button', 'click', function(){
$(".woocommerce-error").remove();
});
});