Saturday 25 August 2018

javascript - Ignoring autocomplete='off' in chrome browser

once user choosing the auto filling option in chrome browser it will auto automatically change the value of this select box according the some deflate values in chrome browser so how can i stop this issue.



I have fond some solutions while i'm googling so it also not working. is there any other solution



1st option is put autocomplete="off"
2nd option is creating fake select box and put style="display: none;"




Please select destination

itemValue="code" cssClass="countrySelectClass" />

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...