// function initCountryCodes(dropdown_el, default_country) { // const ind = { call_code: '62', name: 'Indonesia' }; // setTimeout(function() { // if ($(dropdown_el).hasClass('select2-hidden-accessible')) { // $(dropdown_el).select2('destroy'); // } // $(dropdown_el).find('option').remove(); // var phOption = new Option('+' + ind.call_code, ind.call_code, true, true); // $(dropdown_el).append(phOption); // if ($(dropdown_el).hasClass('select2-hidden-accessible')) { // $(dropdown_el).select2(); // } // $(dropdown_el).trigger('change'); // }, 100); // } // $(async function () { // initCountryCodes('#signup-countrycode', 'ID'); // initCountryCodes('#login-countrycode', 'ID'); // }); $(document).ready(function () { const petAgeInput = document.getElementById('pet-age-input'); if (petAgeInput) { petAgeInput.setAttribute('placeholder', 'Pet Age (only number)'); } const mainSection = document.querySelector('.main-section.position-relative'); if (mainSection) { const customDiv = document.createElement('div'); customDiv.classList.add('custom-text'); customDiv.textContent = 'PM-ID-24-0187'; customDiv.style.textAlign = 'center'; mainSection.insertAdjacentElement('afterend', customDiv); } });