कॉलर फ़ंक्शन को खोजने के लिए, आपको गैर-मानक सुविधा "function.caller" का उपयोग करने की आवश्यकता है। पहले, "argument.caller" संपत्ति पर विचार किया जाता था, जो अब अप्रचलित है।
उदाहरण
कॉलर फ़ंक्शन प्राप्त करने के लिए आप निम्न फ़ंक्शन को चलाने का प्रयास कर सकते हैं
लाइव डेमो
<html> <head> <script type="text/javascript"> function Display() { alert("caller is " + Display.caller); } </script> </head> <body> <p>Click the following button:</p> <form> <input type = "button" onclick = "Display()" value="Get caller function"> </form> </body> </html>