<style> .form-dcwcoid{ padding-left: 20px; padding-right: 20px; background-color:#E6E7E8; } .form-dcwcoid .form-submit-border{ padding-bottom: 20px; text-align: center; } .form-dcwcoid .form-submit-border .btn:hover{ font-size: 18px; font-weight: bold; padding: 0px; height: 40px; line-height: 36px; border-color: #f7931d; background-color: #f7931d; color: #fff; border: 1px solid; text-align: center; display: block; } .form-dcwcoid .form-submit-border .btn{ font-size: 18px; font-weight: bold; padding: 0px; height: 40px; line-height: 36px; color: #f7931d; border-color: #f7931d; border: 1px solid; text-align: center; display: block; width: 100%; background-color: white; } input[type=checkbox], input[type=radio]{ height: inherit; } </style>

I agree to provide required data and to be contacted by Bank Danamon based on agreed schedule with Bank Danamon

<script type="text/javascript"> var wffmid = $('form[data-wffm="{BDDEDAE4-4C19-4425-8C16-BB5C2DB20348}"]').attr('id'); var LainnyaCheckbox = "input[value='Lainnya']#" + wffmid + "_Sections_3__Fields_5__Value"; var LainnyatxtId = "#" + wffmid + "_Sections_3__Fields_6__Value"; $(LainnyaCheckbox).parent().html( $(LainnyaCheckbox) ); $(LainnyaCheckbox).parent().append( $(LainnyatxtId) ); var amountId = "#" + wffmid + "_Sections_0__Fields_4__Value"; function FormatCurrency(ctrl) { //Check if arrow keys are pressed - we want to allow navigation around textbox using arrow keys if (event.keyCode == 37 || event.keyCode == 38 || event.keyCode == 39 || event.keyCode == 40) { return; } var val = ctrl.value; val = val.replace(/,/g, "") ctrl.value = ""; val += ''; x = val.split('.'); x1 = x[0]; x2 = x.length > 1 ? '.' + x[1] : ''; var rgx = /(\d+)(\d{3})/; while (rgx.test(x1)) { x1 = x1.replace(rgx, '$1' + ',' + '$2'); } ctrl.value = x1 + x2; } function isNumber(evt) { if (event.keyCode >= 48 && event.keyCode <=57) { return true; } else { return false; } } function CheckNumeric() { return event.keyCode >= 48 && event.keyCode <= 57; } $(document).on('keyup', amountId,function () { FormatCurrency(this); }); $(document).on('keypress', amountId,function () { return isNumber(this); }); </script>