Monday, June 3, 2024
73
rated 0 times [  75] [ 2]  / answers: 1 / hits: 147343  / 12 Years ago, mon, july 30, 2012, 12:00:00

I'm developing a web app that utilises JavaScript alert() and confirm() dialogue boxes.



How can I stop Chrome from showing this checkbox?





Is there a setting I can modify?



I know I could modify the source code, but I'd like it so that Chrome could still auto-update.



I don't need to worry about other browsers since the app only runs in Chrome.



I have admin access to the (Windows) machines that run the app.


More From » google-chrome

 Answers
197
function alertWithoutNotice(message){
setTimeout(function(){
alert(message);
}, 1000);
}

[#83964] Monday, July 30, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
jelani

Total Points: 473
Total Questions: 99
Total Answers: 99

Location: Cape Verde
Member since Fri, Nov 27, 2020
4 Years ago
;