Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to know how to pass the value of a variable in JavaScript file to a variable in a script function which is written on top of the HTML file.

I wrote it like this:

myjsfile.js:

var abc = "10";

HTML file:

<html>
<head>
<script type="text/javascript">
(function() {

var test = document.createElement('script'); test.type = 'text/javascript'; test.async = true;

test.src = 'testquery.js';

var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(test, s);

alert(abc);
})();

</script>
</head>
<body>
</body>
</html>

I am not getting the output. Please help! Thanks in advance.

Basically I am trying to create a jquery plugin just like Google analytics.

share|improve this question

3 Answers

The script has to load first, try using onload

test.onload=function(){alert(abc);}
share|improve this answer
Thanks alot it worked. can i know how to display an image using the external javascript file. That is instead of variable i want to display image which is called from jquery file. – Christina Jul 12 '12 at 7:04
<html>
  <head>
    <script type="text/javascript" src="testquery.js"></script>
    <script type="text/javascript">
        alert(abc);
    </script>
 </head>
 <body></body>
</html>
share|improve this answer
test.onload=function(){alert(abc);} code worked for me.... But how to display image which is stored in external jquery – Christina Jul 12 '12 at 7:07

try this:

(function() {

    var test = document.createElement('script');
    document.getElementsByTagName('head')[0].appendChild(test);
    test.type = 'text/javascript';
    test.src = 'testquery.js';

    test.onload = function () {
        alert(abc);
    }

})();​

well.. the onload has already been told but you should at least switch your way of appending it to the head.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.