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