Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently searching a solution to not include two times the same .js

So my question is relatively simple, i'm searching something like requice_once (.php) or #ifndef(.c/.c++).

Are they solution for this ?

share|improve this question

2 Answers

up vote 4 down vote accepted

I would suggest that you use either require.js or head.js for this kind of thing. They are fully-featured and provide performance benefits as well.

share|improve this answer

You can write your own ifndef-code, just write your files like this (assuming it's for a browser):

if (!window.NAME_UNIQUE_FOR_THIS_FILE) {
  window.NAME_UNIQUE_FOR_THIS_FILE = true;

  .. your code here ...

}

The if-statement checks if the uniquely named variable exists already. If not, create it (so the next time this code is seen, it will be ignored). Then run whatever you want this file to do.

Be sure to use a very unique name though, since it's a global variable.

share|improve this answer
You mean that i have to put this at the top of my ".js" ? – Sindar Mar 1 '11 at 14:39
I think he means to wrap your entire JS file in an IF block. This appears to only work if you exclusively use function expressions. This will not work with function definitions (see jsfiddle.net/XbAgt ). You need to conditionally include the JS file as a whole. A library like one mentioned in the other answers would probably be best. – XHR Mar 1 '11 at 14:58
XHR is correct. I also agree that a library for this would be a more genuine solution (if it's an option for you). Regarding function expressions vs function definitions, that would only be a problem in certain cases (where state is captured in the functions). If functions are overwritten by identical functions, it doesn't really hurt anyone. – Jakob Mar 1 '11 at 16:23

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.