I am trying to use simple jQuery UI. I've included everything and I have this simple script:
<script>
$(function() {
$( "#slider" ).slider();
});
</script>
and
<div id="slider"></div>
My includes:
<script type="text/javascript" src="js/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.10.4.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/ayaSlider.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/angular-route.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
But when I am opening the page there is no slider. According to documentation of angular:
If jQuery is available, angular.element is an alias for the jQuery function. If jQuery is not available, angular.element delegates to Angular's built-in subset of jQuery.
However, I don't really understand how can I use angular.element
and there is no example.
Update: I managed to have the slider on the screen but it does not work, I cannot change values or do something with it.