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