>

सिक्युरिटी अलर्ट: फसवणूकदार टीव्हीएस क्रेडिटच्या नावाचा गैरवापर करीत आहेत. कोणतीही वैयक्तिक माहिती शेअर करू नका किंवा कोणालाही पैसे ट्रान्सफर करू नका. विशेष ऑफर पेजला भेट देऊन आमच्या सर्व विशेष ऑफर व्हेरिफाय करा. तुम्हाला कोणतेही खोटे कॉल आल्यास 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(); }); });