Hi ,

you can try jQuery Timers. http://jquery.offput.ca/every/

I have done a sample:

javascript;
$(document).ready(function(){
                        $('#formLoad').everyTime(1000, function(i){
                                $('input[name=q]').val(i);
                                
$('#south').load("select.php?q="+$("input[name=q]").val());
                        });
});

html:
<form id="formLoad" name="form" method="get" action="">
           <input type="text" name="q" value=""/><br />
           <input type="submit" name="submit" value="submit"/>
</form>
<div id="south"> Load content into this div</div>

Daniel.

On Nov 19, 5:53 am, anny <[EMAIL PROTECTED]> wrote:
> Hi ,
>
> I tried ajaxsubmit which works fine. I need to submit the entire form
> by POST automatically for every 60 seconds.
>
> What is the best way to do it?
>
> How do i use ajaxsubmit  to submit form automatically for every 60
> seconds.
>
> I did search & do see there are auto save plug-in... but not sure
> which one to use.
> Prefer ajaxsubmit  with autosave feature. Please help.
>
> Thanks in advance. Any help will be appreciated.
> Anny

Reply via email to