How to disable Chrome's saved password prompt setting through JavaScript

前端 未结 7 1208
耶瑟儿~
耶瑟儿~ 2020-11-28 13:32

Is there any way to manipulate Chrome settings with the help of JavaScript or jQuery? I want to disable the save password pop-up bubble using JavaScript. How to do

相关标签:
7条回答
  • 2020-11-28 14:10

    use Ajax

                    $.post("process.php", {
                        user: txtuser,
                        pass: txtpass
                    }, function(data) {
                        //alert(data);
                        async: true //blocks window close
                        //location.reload();
                        //OR
                        //window.location.href = "your link";
                    });
    
    0 讨论(0)
提交回复
热议问题