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