Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
rental08 #1
Javascript and Coldfusion
Can you have CF tags within javascript tags?
thanks,
Mike
rental08 Guest
-
using javascript variable in coldfusion
Hi, how can i use a javascript varaible in coldfsuon tags?i dont want to passthose variables via hyperlink cause i need tovalues in current page. ... -
Javascript in a Coldfusion Flash for - HOW????
Trying to figure this out. Any Ideas or examples. thanks -
javascript, coldfusion expression
hi guys! is there a way to embed a expression using javascript and coldfusion values? this variable is getting nut... <a... -
ColdFusion and JavaScript???
I have this javascript that works well... http://www.hotarea.com/fast/display.exe?show+javascript&form_elements&formsDropD own2D.html It's a... -
Help with Javascript/Coldfusion Scroller
Im working on a news ticker or scroller for a hockey website that displays the scores from last nights games. I already have it basically working... -
mxstu #2
Re: Javascript and Coldfusion
Yes, but it is not always the best design, for both readability and
compatability reasons.
<cfset testValue = "This value is from CF">
<script type="text/javascript">
<cfoutput>
var message = '#testValue#';
</cfoutput>
alert(message);
</script>
mxstu Guest



Reply With Quote

