I am using Angularjs and JQuery in the same project. When using Angularjs and JQuery in the same project, it is a convention that JQuery has to be loaded first and then AngularJS as follows:
<script src="/Scripts/jquery-3.1.1.min.js"></script>
<script src="Scripts/angular.js"></script>
But it causing some problem as when page load, some html element hidden with AngularJS ng-hide directive becomes visible (for a while/during the time of JQuery load) until AngularJS load.
Problem will be solved if I can load AngularJS before JQuery!!
Is it somehow possible to load AngularJS before JQuery or any other solution for solving the problem described above.
Any suitable solution will be highly appreciated!!