[Proto-Scripty] Re: Form submit not working on IE

2009-07-10 Thread T.J. Crowder
Hi, Yeah, #3 was my top guess as well. :-( Time to pick up with the third step on this list (small, self- contained example): http://proto-scripty.wikidot.com/faq#xyzprob HTH, -- T.J. Crowder tj / crowder software / com Independent Software Engineer, consulting services available On Jul 9, 4:

[Proto-Scripty] Re: Form submit not working on IE

2009-07-09 Thread Miguel Beltran R.
2009/7/9 JC > > 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(){ >

[Proto-Scripty] Re: Form submit not working on IE

2009-07-09 Thread JC
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({

[Proto-Scripty] Re: Form submit not working on IE

2009-07-09 Thread T.J. Crowder
Hi, I don't know what's wrong, but I do have a couple of observations for you -- they might help, you never know. 1. On this line: new Form.Observer('checkform', 0.3, function(){ Since the function is otherwise reusable for multiple forms, I wonder if you might want: new Form.Observer