>

షెడ్యూల్ చేయబడిన నిర్వహణ: మా అప్లికేషన్లు 15 డిసెంబర్ 2025 నాడు 02:00 AM నుండి 8:00 AM వరకు మరియు 16 డిసెంబర్ 2025 నాడు 5:00 AM నుండి 8:00 AM వరకు అప్‌గ్రేడ్ చేయబడతాయి. ఈ వ్యవధిలో అనేక సేవలు తాత్కాలికంగా అందుబాటులో ఉండకపోవచ్చు. కలిగిన అసౌకర్యానికి మేము చింతిస్తున్నాము.

Hamburger Menu Icon

సైన్‍‌అప్ చేసి పొందండి తాజా అప్‌డేట్లు మరియు ఆఫర్లు

వాట్సాప్

యాప్‍ను డౌన్‌లోడ్ చేయండి

మమ్మల్ని సంప్రదించండి

$('.otp__digit').on('input', function (e) { const currentInput = $(this); const currentIndex = parseInt(currentInput.data('index')); const value = $(this).val(); // Allow only numeric values and truncate anything longer than 1 character if (!/^\d$/.test(value)) { $(this).val(''); // Clear non-numeric input } // Move to the next input when a number is entered if (currentInput.val().length === 1 && currentIndex < 4) { $(`#ఓటిపి${currentIndex + 1}`).focus(); } }); // Handle keydown event $('.otp__digit').on('keydown', function (e) { const currentInput = $(this); const currentIndex = parseInt(currentInput.data('index')); // Handle backspace: Move back and clear the previous field if (e.key === 'Backspace' && currentInput.val() === '' && currentIndex > 1) { $(`#ఓటిపి${currentIndex - 1}`).focus().val(''); } }); // Disable paste functionality $('.otp__digit').on('paste', function (e) { e.preventDefault(); }); // Disable copy functionality $('.otp__digit').on('copy', function (e) { e.preventDefault(); }); });