I have a very simple javascript code that runs fine the 1st time it is called, and throws the nasty "Microsoft JScript runtime error: Function expected" the second time it runs!
function getSomeValue() {
// After some processing, ...
return "abc";
}
.../... core code
var expectedValue = "";
expectedValue = getSomeValue()
The error is thrown before executing the last instruction. e.g. the getSomeValue function is NOT executed.
It is worth noticing the cade was running fine at 1st time and after too, with variables of similar scope and function calls too, and once I added the new expectedValue variable it shows that error.
Can someone point me in the right direction please?
getSomeValue-- or possiblywindow.getSomeValue. – Henning Makholm Aug 30 '11 at 15:46