Skip to content
$(document).ajaxComplete(function(){
$('button.btn.cart__checkout').click(function(event){
event.preventDefault();
var rr3text = $('textarea#CartSpecialInstructions').val();
if(rr3text==''){
$('p#CartSpecialInstructions_empty').show();
return;
} else{
$('p#CartSpecialInstructions_empty').hide();
}
});
});