frontline
01-16-2003, 11:12 AM
hello
say i call function foo() how can i get the name of the function i just called that is "foo()"?
say i call function foo() how can i get the name of the function i just called that is "foo()"?
|
||||
how can i get the name of the function i called ?frontline 01-16-2003, 11:12 AM hello say i call function foo() how can i get the name of the function i just called that is "foo()"? CRASH_OVERRIDE 01-16-2003, 12:38 PM Are you just wanting to call it from an expression, or do you want to test if its there? frontline 01-16-2003, 01:01 PM well i like to check the name of the function im calling head8k 01-16-2003, 01:25 PM I don't know if it's possible to get the function name directly. I'd be interested if anyone knows a way. What I have done is to 'cheat' by creating a new function which looks at the caller property of the function which calls it. This string is then chopped up so it only consists of the name and this is then passed back to the original (calling) function. See the example below. There must be a better way of doing this! <script> <!-- function testFunctionName(){ var thisName = getFunctionName(); alert('The function is called: '+thisName); } function getFunctionName(){ rawString = getFunctionName.caller.toString(); openingBracket = rawString.indexOf("("); prefix = rawString.toLowerCase().indexOf("function ")+9; return rawString.substring(prefix, openingBracket); } //--> </script> <a href="javascript:testFunctionName()">Test</a> |
| |||
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum