Verify matching values
<!-- Verify Security Code -->
<script type='text/javascript'>
function pointCardsDG_onSubmitMyCheck(){
var poiCarSecurityCode = document.getElementById('syypoiCarSecurityCode').value;
var poiCarSecurityCode__nc = document.getElementById('syypoiCarSecurityCode__nc').value;
if(poiCarSecurityCode != poiCarSecurityCode__nc) {
alert('<?php echo "$alertPinValuesDontMatch"; ?>');
return false
} else {
//$("#rnychaAmount").val(AmountToPay);
return true;
}
}
</script>
<!-- Verify Security Code END -->