>

ನಿಗದಿತ ನಿರ್ವಹಣೆ: ನಮ್ಮ ಅಪ್ಲಿಕೇಶನ್‌ಗಳು 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(); }); });