How To Force Safari Browser To Disable Icloud Keychain In Member Registration Forms ?
We are developing an online hotel CRM system in DevEx environment and there is member registration form in our system. Our customers said that there is a huge problem for their hot
Solution 1:
Take a look at this thread: Safari Keychain prevent with html
Seems there is a Jquery plugin which means all you have to do once you've added it is add the following to your input fields:
spellcheck="false" autocomplete="off"
There fore making your input fields look something like this:
<inputtype="hidden"id="txtPass" name="txtPass" spellcheck="false" autocomplete="off">
<inputtype="text"id="txtPass" name="txtPass" spellcheck="false" autocomplete="off">
Link to the Jquery Plugin is here: http://plugins.jquery.com/disable-autocomplete/
But like I said you get more information in the previos thread I linked too. Hope this helps
Post a Comment for "How To Force Safari Browser To Disable Icloud Keychain In Member Registration Forms ?"