I am working on a Template with animations. Here the thing is, the JS file which is related to animations, should be written at the bottom of the HTML page like
<!DOCTYPE html>
<html class="wide wow-animation" lang="en">
<head>
<!-- Site Title-->
<title>Sample</title>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lato:400,400i,700,700i,900,900i">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div>
<div class="abc"></div>
</div>
<script src="js/core.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
If we write
<script src="js/core.min.js"></script>
<script src="js/script.js"></script>
at the top of the HTML, the animations won't work.
Now, I am developing the AngularJS app by using that template. Here I couldnt see the animations.
I am in confusion where to declare those external js files.
deferwith the script tag to delay script loading