RE: JS - CF

2001-03-01 Thread Philip Arnold - ASP
> How could i store a javascript variable inside a cold fusion variable. > For example the snippet of code needs to set a session variable > equal to the javascript referrer variable. CF=Server Side, JS=Client Side You have to pass varaibles between the 2, and it's up to you to pass the variable

RE: JS/CF Screen Resolution

2002-03-16 Thread Tangorre, Michael T.
nevermind. foudn soem JS to do it. Thanks, Mike -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 16, 2002 11:16 PM To: CF-Talk Subject: JS/CF Screen Resolution Is there a way to detect a site visitors screen resolution? Michael T. Tang

RE: JS/CF script problem

2002-06-30 Thread Dave Watts
> Can anybody help me do one of two things: > > A.) Make a call from a JavaScript function to a function > written in CFScript, > Or > B.) Reference form elements (before a submission) in CFScript, > like JavaScript does. Example: > myform.mystring.innerText=myform.mystring2.innerText will > c

Re: JS/CF script problem

2002-06-30 Thread Critz
oi Bill!! cfscript is serverside...javascript is clientside so they cannot really interact. -- Best regards, Critter, MMCP Certified ColdFusion Developer Crit[s2k] - Sunday, June 30, 2002, 4:20:47 PM, you wrote: BH> Can anybody help me do one

RE: JS/CF script problem

2002-06-30 Thread Matthew R. Small
You can do choice B: Document.formname.textboxname.value = document.formname.textbox2name.value; - Matt Small -Original Message- From: Bill Henderson [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 4:21 PM To: CF-Talk Subject: JS/CF script problem Can anybody help me do one of