Re: [jQuery] Re: JQuery value set delay

2009-11-25 Thread Michel Belleville
Let me check a little point though, did you set the *id* of your input to "act" or was "act" just the *name* ? Because this selector : $('#act') selects an element that has the *id* "act", whereas in vanilla DOM document.your_form.act points to the element that has the *name* "act". If so, no wonde

[jQuery] Re: JQuery value set delay

2009-11-25 Thread Adods
i've tried that one too, and get the same result. but now i already get the solution by using old way: document.pm_form.act.value = 'value'; btw, thanks for the help :) On Nov 24, 9:32 pm, Michel Belleville wrote: > I think I've had something similar once, I'm not sure how I got it to work > pr