Get your Pre-approved personal loan offer today | TVS Credit

டிவிஎஸ் கிரெடிட்டில், நாங்கள் தகுதி அடிப்படையிலான முறையான ஆட்சேர்ப்பு செயல்முறையை கொண்டுள்ளோம். ஆட்சேர்ப்பு செயல்முறையின் போது விண்ணப்பதாரர்களிடமிருந்து எந்தவொரு கட்டணத்தையும் அல்லது தொகையையும் நாங்கள் ஒருபோதும் கோர மாட்டோம். மோசடி செய்பவர்கள் மோசடி இமெயில்கள்/சலுகைகளை அனுப்ப TVS கிரெடிட் டொமைன் ஐடியை பயன்படுத்தி ஏமாற்றுவது குறித்து எச்சரிக்கையாக இருங்கள். மேலும் தெரிந்துகொள்ள இங்கே கிளிக் செய்யவும்.

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