Hi Sid,
The really important thing is that you'll need to 'hijax' the form and make
sure you provent the default behavior of the browser. jQuery makes this
terribly easy.
jQuery("#myform").bind('submit', function(event){
//stops browser from submitting the form
//and redirecting.
event.preventDefault();
//use jquery form plugin to submit via ajax here or do it by hand
});
Thatcher
On Sat, Jun 28, 2008 at 10:59 PM, Bil Corry <[EMAIL PROTECTED]> wrote:
>
> Sid wrote on 6/28/2008 8:31 PM:
>
>> What I basically want to achieve is that on clicking the submit
>> button, the data is posted to the php file without any noticeable
>> difference happening to my page. The response etc will be taken care
>> of by my code. Any ideas?
>>
>
> If you submit the request via XHR, then the page can remain the same (with
> the div refreshed) while the data is sent to the server. Just note that if
> your site is entirely driven from a single page using XHR, then I hear you
> should be careful of memory leaks; not sure how relevant that advice is
> anymore with the newer browsers.
>
> - Bil
>
>
--
Christopher Thatcher