Exception
Uncaught ReferenceError: $ is not defined
at timer.js:14
Solution
- Please make sure that JQuery JS file is added in the HTML file
- JQuery JS file should be declared first than other JS files like
<script src='https://code.jquery.com/jquery-3.4.1.min.js'></script>
<script src='js/app.min.js'></script>
<script src='js/timer.js'></script>
Comments
Post a Comment