Can you add an option to turn off autofill on Galaxy phones and other devices?
-
Can you add an option to turn off autofill on Galaxy phones and other devices?
It is easy to cheat on tests with autofill. After a student takes a test they can just tap on the answer they typed in before.
Autofill is good on the name and telephone field though. So don’t completely turn it off. Just on the question fields please. Or make an option to allow it if needed. That would be even better.
Below is an example of some code that can turn off autofill. I’m not sure if it will help but I can test anything you make.
<script> $(document).ready(function(){ $(':input').live('focus',function(){ $(this).attr('autocomplete', 'off'); }); }); </script>
The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Can you add an option to turn off autofill on Galaxy phones and other devices?’ is closed to new replies.