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?

link|improve this question

55% accept rate
Look for assignments to getSomeValue -- or possibly window.getSomeValue. – Henning Makholm Aug 30 '11 at 15:46
Nothing wrong with the code you've shown here so the issue has to do with other code around it. Have you looked at the error console to see what javascript errors are happening? – jfriend00 Aug 30 '11 at 15:51
Oops! My bad folks, I'm sorry... The actual return instruction uset to be the name of the function itself. Like: getSomeValue = "abc"; return getSomeValue; – Didier Levy Aug 30 '11 at 16:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.