[jQuery] Re: Which jQuery method to use in this scenario

2008-04-24 Thread neualex
$("#login").text(data); }); ...neualex On Apr 23, 11:32 pm, neualex <[EMAIL PROTECTED]> wrote: > Mike, thanks for your response. > > When using this $.post method, the function is called once the data > comes back from the server page. > How can I show

[jQuery] Re: Which jQuery method to use in this scenario

2008-04-23 Thread neualex
Mike, thanks for your response. When using this $.post method, the function is called once the data comes back from the server page. How can I show a loading icon while the function waits for the data to be sent back? I'd appreciate your support. Thanks, neualex On Apr 23, 10:17 pm,

[jQuery] Re: Which jQuery method to use in this scenario

2008-04-23 Thread neualex
Thank you all for your responses. I am taking Mike's suggestion by using the "serialize" method. ...neualex On Apr 23, 10:17 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > You can do this easily w/o the form plugin also (with jQuery 1.2.2 and later): >

[jQuery] Which jQuery method to use in this scenario

2008-04-23 Thread neualex
values by default without actually building up the "value string" in the $.post method. $.post("process.asp", { name: "neualex", pass: "password" }, function(data){ alert(data); }); I review the documentation, but to be honest I find it difficult. If you h