Some bank websites use the property autofill=off in their web forms to tell browsers not to remember your password. I find this really annoying and wanted it to stop. It turns out you cannot override this setting with a custom CSS file, so another solution is required. We are going to intercept the page before Safari gets it, and remove all of the autofill=off tags.
Read the rest of the hint for my solution...
Here is my quick fix:
<?php
$server = str_replace("/*", ".com", $url);
$wells = file_get_contents($server);
$wells2 = str_replace("autocomplete=\"off\"", " ", $wells);
print "$wells2";
?>
<SCRIPT LANGUAGE="JavaScript">
var currentLoc=window.location;
window.location="http://localhost/~yourUserName/remember.php?url=" + currentLoc + "*";
</script>
127.0.0.1 wellsfargo
Notice that the .com is missing.Mac OS X Hints
http://hints.macworld.com/article.php?story=20041012233334948