Click to get slider value
Description
The following code shows how to click to get slider value.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from w ww. j a v a 2 s .com-->
$('#btn').live('click',function(){
alert($('#slider-0').val());
});
});//]]>
</script>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="fieldcontain">
<label for="slider-0">Input slider:</label>
<input type="range" name="slider" id="slider-0" value="0" min="0" max="10" />
<a data-role="button" href="#" id="btn">Click</a>
</div>
</div>
</body>
</html>