How set value of input programmatically? Problem: value disappear on click

456 Views Asked by At

I want to set value of input using javascript:

document.getElementById("mobileNo").focus();
document.getElementById("mobileNo").select();
document.getElementById("mobileNo").value = "123456789";

Unfortunately when I click on input field my value disappear. Can you help me with this?


Without clicking on input:

<div class="phone-text"><span data-meta="Field" class="next-input next-large"><input id="mobileNo" placeholder="Mobile" name="mobileNo" height="100%" autocomplete="off" value="" data-spm-anchor-id="a2g0o.placeorder.0.74328" aria-label="error"></span></div>

After click on input:

<div class="phone-text"><span data-meta="Field" class="next-input next-focus next-large"><input id="mobileNo" placeholder="Mobile" name="mobileNo" height="100%" autocomplete="off" value="" data-spm-anchor-id="a2g0o.placeorder.0.74328" aria-label="error"></span></div

As you can see after click on input there is added class "next-focus", maybe it is problem with that?


I want to use it on aliexpress address form:

SCREEN HERE

0

There are 0 best solutions below