>

নিরাপত্তা সতর্কতা: প্রতারকরা টিভিএস ক্রেডিটের নাম অপব্যবহার করছে. কোনও ব্যক্তিগত তথ্য শেয়ার করবেন না বা কারও কাছে টাকা ট্রান্সফার করবেন না. বিশেষ অফার পেজ ভিজিট করে আমাদের সমস্ত বিশেষ অফার ভেরিফাই করুন. যদি আপনি কোনও ভুয়ো কল পান, তাহলে 1930 নম্বরে কল করে বা সঞ্চার সাথী পোর্টাল বা অ্যাপের মাধ্যমে তাদের বিরুদ্ধে অবিলম্বে অভিযোগ জানান

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