Re: Calling a ColdFusion Function with Javascript

2006-12-28 Thread Ioannis Papanikolaou
Thank you very much for your responces. At the moment I know where to focus and what direction to follow in order to achive it. Again thanx a lot for your time. ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Col

Re: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Christopher Jordan
Ioannis, I'll phrase my reply somewhat differently (though I think most respondents did mention this) -- It's not possible to do it exactly the way you suggested. AJAX *does* make this possible. Using AJAX you can make a call to the server from the client without the browser refreshing. I'll n

RE: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Steve Brownlee
Sent: Wednesday, December 27, 2006 2:59 PM To: CF-Talk Subject: Calling a ColdFusion Function with Javascript Hello people, Do you know how can I actually call a Coldfusion funsction with a javascript function. for example I am using onClick to call a

RE: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Ian Skinner
Hello people, Do you know how can I actually call a Coldfusion funsction with a javascript function. for example I am using onClick to call a cffunction inside a div. (DOM) Example:

Re: Calling a ColdFusion Function with Javascript

2006-12-27 Thread Claude Schneegans
>>Do you know how can I actually call a Coldfusion funsction with a javascript function. Yes I know: you can't. Javasript is run on your client's PC, AFTER any CF code has been executed on the server. You may use some AJAX too, to make your client browser talk to the server, but this is kind o

Calling a ColdFusion Function with Javascript

2006-12-27 Thread Ioannis Papanikolaou
Hello people, Do you know how can I actually call a Coldfusion funsction with a javascript function. for example I am using onClick to call a cffunction inside a div. (DOM) Example: And of cource my result after I click it would be #MyExample()# instead of the text. I am sure that as a new