My 89-year old father-in-law is in the early stages of dementia and uses his credit card to buy a lot of random unnecessary crap online.
I wrote this Safari .js extension to pop-up a warning when he opens a new window, warning him about using his credit card.
This is really annoying popping up all the time. I’d like to modify it to just call the function when he tries entering numbers in a text field (i.e. uses his credit card) or something else to that effect. I’m wondering if anyone has had this experience with elders and computers and/or has suggestions?
I wrote this Safari .js extension to pop-up a warning when he opens a new window, warning him about using his credit card.
Code:
function watchOut() {
var msg = "DON'T USE THAT CREDIT CARD!";
alert(msg)
}
watchOut();
This is really annoying popping up all the time. I’d like to modify it to just call the function when he tries entering numbers in a text field (i.e. uses his credit card) or something else to that effect. I’m wondering if anyone has had this experience with elders and computers and/or has suggestions?