Created
May 22, 2010 11:40
Revisions
-
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,12 @@ function testDynamicFunction(){ var dynamicFunctionCall = "thisWillBeCalledDynamically"; window[dynamicFunctionCall ](); //javascript function being called dynamically! } function thisWillBeCalledDynamically(){ alert("Woh! How did you call me!"); } testDynamicFunction(); -
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ function testDynamicFunction(){ var dynamicFunctionCall = "thisWillBeCalledDynamically"; window[dynamicFunctionCall ](); } function thisWillBeCalledDynamically(){ alert("Woh! How did you call me!"); }