I'm using jquery to develop placeholder text over an input that fades slightly when the input gets focus, and disappears completely when the users types. This part works fine. So, to avoid a conflict with saved text, I wrapped the code in:
if(!$($input).val()) {
...create placeholder, set up rules for fading it, etc...
}
If the user has a saved password for example, in Firefox, the browser will detect that the input has a value and then not create the placeholder text.
In Chrome, however, Chrome does not load the saved value until after the page is 'done' loading... which means it detects that the input is empty, creates the placeholder text, and then after the page is loaded, places the saved value in the input--leading to the placeholder and the password being on top of each other.
How can I detect Chrome filling out the form to avoid this unfortunate overlap?