I want to call a function from my master .js file - from within my php page. Is this possible?
<script type="text/javascript">
functionName(); //calling function from master.js file
</script>
Doesn't seem to work.
It should be as long as the external script is loaded first and "functionName()" is attached to the global scope
master.jsbefore this script?