[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread manuel muñoz solera
Hi anny I was using this in an old project http://www.webunity.nl/js/framework/periodicalUpdate.js I don't know if there is something better or if it's working with 1.2 El 18/11/2008, a las 22:53, anny escribió: Hi , I tried ajaxsubmit which works fine. I need to submit the entire

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread Daniel
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);

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread anny
Daniel, Thank you for the reponse. I tried this , but does not work. Firfox hangs at everyTime (1000,. Do i need to unclude any jquery files for timer function? right now i have only 2 files, form.js and jquery.js $(document).ready(function(){

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread anny
mamuso , Thanks for the response. Do you any example on how to use it? On Nov 19, 3:04 am, manuel muñoz solera [EMAIL PROTECTED] wrote: Hi anny I was using this in an old projecthttp://www.webunity.nl/js/framework/periodicalUpdate.js I don't know if there is something better or if it's

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread anny
Forgot to mention that i have included jquery.timers.js file also. On Nov 19, 1:16 pm, anny [EMAIL PROTECTED] wrote: Daniel, Thank you for the reponse. I tried this , but does not work. Firfox hangs at everyTime (1000,.  Do i need to unclude any jquery files for timer function? right

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread anny
Daniel, Thank you for the reponse. I tried this , but does not work. Firfox hangs at everyTime (1000,. Do i need to unclude any jquery files? right now i have only 3 files, form.js and jquery.js , timers.js $(document).ready(function(){ $('#form').everyTime(1000,

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread Daniel
You should change ajaxForm to ajaxSubmit as ajaxForm doesnt submit the Form for you. It will just prepare the Form and submit it when you press Submit I think. You can refer to the documentation for more information. $(document).ready(function(){

[jQuery] Re: ajaxsubmit with autosave feature

2008-11-19 Thread Daniel
I have just checked your new solution with setTimeout. It should produce similar result if you change the ajaxForm to ajaxSubmit. Daniel. On Nov 20, 4:10 am, anny [EMAIL PROTECTED] wrote: Daniel, Thank you for the reponse. I tried this , but does not work. Firfox hangs at everyTime