Contact Us
Get in touch with us
Address
TIC Compound, Brgy. Sampaloc, Lico Bridge, Tanay, Rizal
Phone
Got questions or need assistance? Reach out to us! We’re here to help!
Send us your comments, thoughts, feedback and inquiries and we
will quickly get back to you.
jQuery(document).ready(function($) {
// Function to handle the phone input validation
function validatePhoneInput(input) {
let value = input.val();
// Remove any non-numeric characters except + and space
value = value.replace(/[^0-9+ ]/g, '');
// Ensure only one + at the start
if (value.includes('+')) {
value = '+' + value.replace(/\+/g, '');
}
input.val(value);
}
// Handle both initial load and dynamic form changes
$(document).on('input', '#input_1_3', function() {
validatePhoneInput($(this));
});
});