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