I am trying to figure out the location of the script tag the current javascript is running in. These are dynamically generated tags.... code snippet:
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>where am i?</title>
  <script type="text/javascript" charset="utf-8">
    function byId(id) {
      return document.getElementById(id);
    }
    function create_script(el, code) {
      var script = document.createElement("script");
      script.type = "text/javascript";
      script.text = code;
      el.appendChild(script);
    }
  </script>
</head>
<body>
  <div id="find_me_please"></div>
  <script>
    create_script(byId("find_me_please"), "alert('where is this code located?');");
  </script>
</body>
</html>
Thanks!
UPDATE:
So I do not think my initial example was as clear as I had thought.
What is really going on is that I need to determine from inside a src'd, dynamically inserted javascript file where it is located in the DOM.