jQuery(function($){
$('#place_order').on('click', function(e){
if(!$('#billing_phone').val()){
e.preventDefault();
alert("Please enter your phone number first");
return false;
}
if(!$('#transaction_id').val()){
e.preventDefault();
alert("Please enter Transaction ID");
return false;
}
alert("Delivery charge must be paid before order confirmation");
});
});
Reviews
There are no reviews yet.