jQM - Detect slidestop event
by Alex Azuero
HTML
<link rel="stylesheet" href="http://jeromeetienne.github.com/jquery-mobile-960/css/jquery-mobile-fluid960.css">
<script src="http://timeago.yarp.com/jquery.timeago.js"></script>
<script src="http://imakewebthings.github.com/jquery-waypoints/waypoints.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<!--<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>-->
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
<div id="homeContainer" data-role="page">
<div data-role="content">
<label for="slider-fill">Lautstärke:</label>
<input id="volume-slider" type="range" name="slider-fill" value="50" min="0" max="100" data-highlight="true" />
</div>
</div>
</body>
</html>
JavaScript
$(document).on('pageinit', '#homeContainer', function(){
$( "#volume-slider" ).on( "slidestop", function( event, ui ) {
alert(this.value);
});
});