Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

JQuery UI Slider - Default functionality

<!--   jQuery UI Effects Blind 1.7.2     Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)   Dual licensed under the MIT (MIT-LICENSE.txt)   and GPL (GPL-LICENSE.txt) licenses.   --> <!doctype html> <html lang="en"> <head>   <title>jQuery UI Slider - Default functionality</title>   <link type="text/css" href="js/themes/base/ui.all.css" rel="stylesheet" />   <script type="text/javascript" src="js/jquery-1.3.2.js"></script>   <script type="text/javascript" src="js/ui/ui.core.js"></script>   <script type="text/javascript" src="js/ui/ui.slider.js"></script>   <link type="text/css" href="js/demos.css" rel="stylesheet" />   <style type="text/css">     #demo-frame > div.demo { padding: 10px !important; };   </style>   <script type="text/javascript">   $(function() {     $("#slider").slider();   });   </script> </head> <body> <div class="demo"> <div id="slider"></div> </div><!-- End demo --> <div class="demo-description"> <p>The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.</p> </div><!-- End demo-description --> </body> </html>