RE: OT: Ok.. JS gurus...

2001-11-27 Thread Alex
used > as the new item to display. > > Make sense? > > Lee > > PS - We can take this off the list, if you like? But I thought others > might find it useful. > > > > -Original Message- > > From: Don Vawter [mailto:[EMAIL PROTECTED]] >

RE: OT: Ok.. JS gurus...

2001-11-27 Thread Alex
n field. Should I not create the > hidden field ahead of time? > > Lee > > > > -Original Message- > > From: Alex [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, November 27, 2001 11:55 AM > > To: CF-Talk > > Subject: Re: OT: Ok.. JS

RE: OT: Ok.. JS gurus...

2001-11-27 Thread Lee Fuller
> To: CF-Talk > Subject: Re: OT: Ok.. JS gurus... > > > in netscape the select object doesn't have a value. could > that be the problem. > - Original Message - > From: "Lee Fuller" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL P

Re: OT: Ok.. JS gurus...

2001-11-27 Thread Don Vawter
in netscape the select object doesn't have a value. could that be the problem. - Original Message - From: "Lee Fuller" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, November 27, 2001 1:38 PM Subject: RE: OT: Ok.. JS gurus

RE: OT: Ok.. JS gurus...

2001-11-27 Thread Lee Fuller
ssage- > From: Alex [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 27, 2001 11:55 AM > To: CF-Talk > Subject: Re: OT: Ok.. JS gurus... > > > onchange="addhide(document.formName.dropName.value);" > > function addhide(VAL){ > document.formName.hi

Re: OT: Ok.. JS gurus...

2001-11-27 Thread Alex
onchange="addhide(document.formName.dropName.value);" function addhide(VAL){ document.formName.hideName.value=VAL; document.formName.submit(); } On Tue, 27 Nov 2001, Lee Fuller wrote: > Since we seem to be on the subject, I can't get anything to work, and > thought someone (prolly Dave ) might

OT: Ok.. JS gurus...

2001-11-27 Thread Lee Fuller
Since we seem to be on the subject, I can't get anything to work, and thought someone (prolly Dave ) might have an answer for this... Need to include a drop-down in a form that, when changed (onchange), will add a hidden field to the form, and submit it immediately. Send me somewhere to find it.