I'm sure this is a simple question, but I can't find an answer. I'm trying to use a framework for the first time, Skeleton (getskeleton.com). I have a Javascript file, which I reference in HTML as usual. But the JS doesn't work. Is there some reason for this? I can't find any documentation about using JS with Skeleton.
Asked
Active
Viewed 687 times
-2
-
2Yes, there is a reason. We can't tell you what it is without seeing your code though. Try using the developer tools in your browser to debug it. – Quentin Jan 13 '15 at 15:12
-
I'm asking generally whether there is a problem using JS in Skeleton or if there is something I'm missing, for example, does Skeleton require JQuery? I'm using JS that works elsewhere so I don't believe it is the problem, hence, the reason, I didn't post it. – HST Jan 13 '15 at 15:17
1 Answers
1
Skeleton is just a small boilerplate for modern webpages providing some CSS styles for common UI elements e.g. grids or forms.
At all it has nothing to do with your javascript file and should not affect it since it is build with pure CSS.
You might post your code (codepen or something like that). Then we are able to check what's wrong with your javascript.

rofrischmann
- 349
- 2
- 9
-
-
Finally, I figured it out. I had put my js file in the wrong folder. No matter how many times I looked at it, I just didn't see what I'd done. So, the answer was not related to JS or Skeleton. Thanks anyway! – HST Jan 13 '15 at 22:23