How can I make my password fields always empty?
You could clear the old password shortly after the page loads.
Using jQuery:
setTimeout(
function() { $(':password').val(''); },
1000 //1,000 milliseconds = 1 second
);
nope. you cannot handle this browser behaviour.