Hello, I am trying to write some JQUERY code in a .js file. No matter how is write the code I get a
ReferenceError: $ is not defined
I know this is related to jquery and I looked at other .js file and they seem to reference $ just fine. What I am missing? Even this errors out
(function () {
$(document).ready(function() {
});
}());