(For others who may face the same problem as the OP)
I had the same problem, but the reason is because I tried to load my jQuery script before loading the jQuery library itself. In other words, make sure you add this line first:
<script src="Scripts/jquery-{version}.min.js"></script>
before adding
<script src="Scripts/JavaSript_scroll.js"></script>
source share