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 just finished my JS code. Now I moved it into its own file, and now PHPStorm tells me that there is no variable called $. How do I fix this? (Can JSDoc solve it?)

share|improve this question
"Settings | JavaScript | Libraries" should help. If the error comes from JSLint/JSHint, then see the answer from @dreame4 – LazyOne Nov 3 '12 at 16:52

1 Answer

up vote 2 down vote accepted

Probably PHPStorm sees no declaration of a $ variable in your JS file. Check if you properly copied your code.

If $ is a global variable (jQuery of something like that) you can add such a line at the top of your JS file /*global $: false */.

JSDoc has nothing to do with that as far as I know. Other tool, which is built-in PHPStorm like JSHint or JSLint, checks correctness of JavaScript code.

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.