I wanted to use JQuery within Webstorm, but as soon as I use something like $("*")
I get an error(when working in a JS-file):
console.log($("*"));
ReferenceError: $ is not defined
at ...\app.js:41:21
at FSReqWrap.oncomplete (fs.js:95:15)
Process finished with exit code 1
What I did so far is I included the jquery file in my layout-page(master page) in the head section and it works.
Under Settings and Libraries I checked JQuery.
But I still got that error, I think I have to change some settings in Webstorm...?!