$('.account-password').on('input', function() {
console.log(4)
checkPassword();
});
Why does the above fire on page load? It's right underneath document ready and it's really annoying... This also fires on page load:
.keyup(function() {
There is nothing clicking on that element as it's displayed none?? It also triggers when I press keys on my keyboard, but I am not inside the targetted input field???