How to show a slider in jquery?

Vivek.Ramapuram
Posted by Vivek.Ramapuram under jQuery category on | Points: 40 | Views : 1379
This below code is used to show the slider in jquery..

 <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"/>


<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>


<div id="sliderbar"></div>
<script>
$("#sliderbar").slider();

</script>

Comments or Responses

Login to post response