Copy link to clipboard
Copied
<script language="javascript">
function fnTemplateFiltersSave()
{
alert("hi");
another_function();
}
</script>
<cfscript>
function another_function(){
alert("hi2");
}
</cfscript>
id there anything wrong in this syntax.. if so what did i do wrong?
Copy link to clipboard
Copied
Ask yourself these questions:
* where does JavaScript run?
* where does CF run?
--
Adam