If i dont put autocomplete="off"
on my <input type="text" />
s the browser will sometimes fill them in with likely/remembered data.
When does this happen in the DOM-load-lifecycle?
It appears to be after:
$(function(){ alert('i happen before autocomplete'); });
Is there a dom-load event which occurs after form-autocompletion?
If so, what is it?
If not, meh, what can I do to execute some JS "on page load", but after autocompletion?
Solutions needs to be cross browser
Thanks
Andrew