Page is a not externally linkable
Fotiman - 7:37 pm on Dec 4, 2012 (gmt 0)
The code, as you describe it, should work. I verified this with the following very simplistic base case:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<script src="external_file.js"></script>
<script>
function func1() {
func2();
}
function func3() {
alert('in func3');
}
func1();
</script>
</body>
</html>
// external
function func2() {
func3();
}
So perhaps something else is failing (and thus erroring out) before you think.