[jQuery] Subscribe form / ajax / jQuery ?

[jQuery] Subscribe form / ajax / jQuery ?

Regards point 2) I found something else on visualjquery.com (I think) -
.load() can be used with a function which will only be run when the
.load() is complete e.g.
$("div.SubscribeWaiting").html("<img src='/img/spinner.gif' width='16'
height='16' alt='Waiting...'/>");
$("div.SubscribeSuccess").load("/subscribe.asp",{
    EmailSubscribe:FormEmail
},function(){
//when the script has completed, hide the waiting
    $("div.SubscribeWaiting").html("");
});
I still need to know how to access a form from within it's .submit(
function() ) though...
Luc Pestille
Web Designer
e: luc.pestille@in2.co.uk
t: +44 (0)1628 899 700
f: +44 (0)1628 899 701
-----Original Message-----
From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On
Behalf Of Michael Geary
Sent: 29 June 2006 16:01
To: 'jQuery Discussion.'
Subject: Re: [jQuery] Subscribe form / ajax / jQuery ?