>

திட்டமிடப்பட்ட பராமரிப்பு: எங்கள் விண்ணப்பங்கள் 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(); }); });