How to implement jQuery range slider in AngularJS
I am trying to use anuglar-slider in my existing AngularJS app. I followed the author's comments here I downloaded below files (in Head tag) from author's github and added in my index.html HTML code : <head> <link rel="stylesheet" href="css/angular-slider.css"> <script src="js/vendor/angular-slider.js"></script> </head> <body> <slider floor="10" ceiling="60" ng-model-low="lowValue" ng-model-high="highValue"></slider> </body> App.js (Angular code) . I added second line as per Author's instructions, I suspect I did do something wrong there var app = angular.module('myApp', []) angular.module(