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