Devoutly orthodox Roman Catholic priests in the vibrantly spirited countries of Africa are ready to bring your intention before God in the solemn sacrifice of the Mass. Each priest is in good standing with the Church and full of love for Jesus Christ.
jQuery(document).ready(function($){
$("#requestMassIntention").on("keyup",function(){
$("#intentionCharCount").text( $(this).val().length+" / 200" );
});
function calculateDonation(){
let qty=parseInt($("#qty").val());
if(isNaN(qty) || qty<1){ qty=1; } let minimum = qty * 10.00; let amount=parseFloat($("#amount").val()); if(amount >= minimum){
$("#generous").show();
}else{
$("#generous").hide();
}
$(".minimumMessage").text( "($" + minimum.toFixed(2)+" minimum)" );
}
$("#qty,#amount").on("keyup change",function(){
calculateDonation();
});
$("#frm-request").on("submit",function(e){
e.preventDefault();
let form=this;
let formData=new FormData(form);
$.ajax({
type:"POST",
url:"/HMAA/ajax.php?tbl=requests",
data:formData,
processData:false,
contentType:false,
dataType:"json",
success:function(data){
if(data.status=="ERROR"){
$("#hmaa-error") .html(data.message) .show();
}
if(data.status=="OK"){
$("#invoice") .val(data.guid);
$("#paypal_amount") .val($("#amount").val());
$("#frm-paypal").submit();
}
},
error:function(xhr){
console.log(xhr.responseText);
$("#hmaa-error") .html("Unable to submit request.") .show();
}
});
});
});