Here's my function:

function AutosaveForm(formthis){
    var alertTimerid = 0;
    new Form.Observer('checkform', 0.3, function(){
        clearTimeout (alertTimerid);
        alertTimerid = setTimeout (function(){
            formthis.request({
                onComplete: function(){alert('Form data saved!')}
            })
        }, 1000)
    })
}

I call AutosaveForm from html in the page.  In Firefox it works fine,
after 1 second after the form is modified it submits the results and
alerts me that the data was saved.  But in IE it just alerts me that
it was saved but doesn't actually save the data that was modified,
when I refresh the page its the old data.  Any Ideas?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to