Ajax Loader
×

Untitled

HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
1
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
2
<p>
3
  <label for="amount">Minimum number of bedrooms:</label>
4
  <input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;">
5
</p>
6
<div id="slider-range-max"></div>
7
<a href="#">клик</a>
8
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
9
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
 
JavaScript
$(function() {
1
$(function() {
2
  function exampleOne(){
3
    $( "#slider-range-max" ).slider({
4
      range: "max",
5
      min: 1,
6
      max: 10,
7
      value: 2,
8
      slide: function( event, ui ) {
9
        $( "#amount" ).val( ui.value );
10
      }
11
    });
12
    $( "#amount" ).val( $( "#slider-range-max" ).slider( "value" ) );
13
  }
14
  
15
  exampleOne();
16
  
17
  $('a').click(function(){
18
    exampleOne();
19
  });
20
  
21
  });
22
    
 

Untitled

CSSDeck G+