`; let safariOtp = `
` if (userAgent.match(/chrome|chromium|CriOS/i)) { document.getElementById('otpTextScreen').innerHTML = chromeOtp; } else{ document.getElementById('otpTextScreen').innerHTML = safariOtp; } /*keypad auto popup*/ setTimeout(function() { $("#otp1").focus(); },200); } function iosAutoRead(){ const val = document.querySelector('#otp1').value; const pastedData = val.substring(0, 6); for(let i = 0; i < pastedData.length; i++) { $("#otp"+(i+1)).val(pastedData[i]); } otpEmptyCheck(); }