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'm trying to share objects between my javascripts.. In my background.html I have:

<html>
  <head>
    <script type="text/javascrpt">
      window.Something = {};
    </script>
  </head>

  <body>
    <script type="text/javascript" src="../js/file1.js"></script>
    <script type="text/javascript" src="../js/file2.js"></script>
  </body>
</html>

and in file1.js I have:

alert("1: " + window.Something);

and in file2.js I have:

alert("2: " + window.Something);

when I reload my extension I just get 2 alerts:

1: undefined 2: undefined

Whats the deal?! Thanks everyone

share|improve this question

1 Answer

up vote 1 down vote accepted

Remove script written in background.html

Use the following code instead

<html>
  <head>
    <script src="js/file3.js"></script>
 <script  src="js/file1.js"></script>
    <script  src="js/file2.js"></script>
  </head>
  <body>
  </body>
</html>

I assume you have a folder called js

file3.js

window.Something = {};

For more information refer the following link

http://developer.chrome.com/extensions/contentSecurityPolicy.html#JSExecution

share|improve this answer
You are right - Basically, no inline js, so it wasn't getting executed.. I've now fixed this, thanks. – Michael Baldry Nov 22 '12 at 21:03

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.