Ok so I modifed the function to suggestions on 1 and 2 just incase:
function AutosaveForm(formthis){
var alertTimerid = 0;
new Form.Observer(formthis, 0.3, function(){
clearTimeout (alertTimerid);
alertTimerid = setTimeout (function(){
formthis.request({
onComplete: function(){alert('Form data saved!');}
});
}, 1000);
});
}
3 was my first guess but I can't find any duplicates. I even went as
far are renaming the form to "aardvark" something thats def not
sharing that name/id with some other element and it still is a no go.
The form itself has name and ID specified as the same, I tried
removing the name, and then the ID to make sure it wasn't some funky
conflict there and still the same issue.
Any other 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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---