Question
Javascript invoke cfscript function
<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?
