jQuery: What listener do I use to check for browser auto filling the password input field?

前端 未结 3 1877
滥情空心
滥情空心 2020-12-18 04:27

I have a simple problem that I cannot seem to find a solution to.

Basically on this website here: http://dev.supply.net.nz/vendorapp/ (currently in development) I ha

3条回答
  •  被撕碎了的回忆
    2020-12-18 05:22

    Also you should probably also put a listener on change:

    $('#password').change(function() {
        // DEAL WITH IT IF THERE IS CONTENT IN IT AND THE LABEL IS STILL THERE
    });
    

提交回复
热议问题