I am working my way through the following tutorial and everything works great except for one significant detail: When I test the page in any browser I get a warning message that content unsecure content is being blocked. Once I acknowledge the warning and choose "allow blocked content" or a similar option, it works just fine. Obviously this will be problematic if left as is and put into production.
This is the body of the .js file
$(document).ready(function () {
$('input[type=password]')
.keyup(function () {
// keyup code here
})
.focus(function () {
$('#pswd_info')
.show();
})
.blur(function () {
$('#pswd_info')
.hide();
});
});
My question is how do I implement the code so it does not throw warnings and is automatically blocked by browsers?
I look forward to your insights and expertise.