>

பாதுகாப்பு எச்சரிக்கை: மோசடியாளர்கள் டிவிஎஸ் கிரெடிட்டின் பெயரை தவறாகப் பயன்படுத்துகின்றனர். எந்தவொரு தனிப்பட்ட தகவலையும் பகிர வேண்டாம் அல்லது யாருக்கும் பணத்தை டிரான்ஸ்ஃபர் செய்ய வேண்டாம். சிறப்புச் சலுகைகள் பக்கத்தை அணுகுவதன் மூலம் எங்கள் அனைத்து சிறப்பு சலுகைகளையும் சரிபார்க்கவும். நீங்கள் ஏதேனும் போலி அழைப்புகளைப் பெற்றால், 1930-ஐ அழைப்பதன் மூலம் அல்லது சஞ்சர் சாதி போர்ட்டல் அல்லது செயலி மூலம் உடனடியாக அவற்றை தெரிவிக்கவும்

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(); }); });