[jQuery] form mirroring

[jQuery] form mirroring

Hello,
just checking to see if there is a better method of mirroring the
value's of two form input's better than this method:
$("#l_username").bind("keypress", function()
{$("#r_username").val($("#l_username").val()); } );
$("#l_password").bind("keydown", function()
{$("#r_password").val($("#l_password").val()); } );
This is used for a login & register form side-by-side. It works, but it
seems a bit slow and often the user can begin typing before the rest of
the page has loaded.
Will
--
|||||||||||||||||||||||||||||||||||
Will Jessup
c. 760 807 0850
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/