>

নির্ধারিত রক্ষণাবেক্ষণ: আমাদের আবেদনগুলি 15শে ডিসেম্বর 2025 তারিখে সকাল 02:00 টা থেকে সকাল 8:00 টা পর্যন্ত এবং 16ই ডিসেম্বর 2025 তারিখে সকাল 5:00 টা থেকে সকাল 8:00 টা পর্যন্ত আপগ্রেড করা হবে. এই সময়ের মধ্যে বিভিন্ন পরিষেবা সাময়িকভাবে উপলব্ধ থাকতে পারে. আপনার অসুবিধার জন্য আমরা দুঃখিত.

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