Handle select change event
Description
The following code shows how to handle select change event.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!-- ww w . j a v a 2 s. c o m-->
$('.selectMe').change(function() {
var $this = $(this);
if($this.val() != '') {
$.mobile.changePage( "#"+$this.val(), { transition: "slide"} );
}
});
});//]]>
</script>
</head>
<body>
<div data-role="page" id="home">
<select name="select-choice-5" class="selectMe"
data-native-menu="false" tabindex="-1">
<option>View details...</option>
<option value="option1">Option1</option>
</select>
</div>
<div data-role="page" id="option1">
<select name="select-choice-5" class="selectMe"
data-native-menu="false" tabindex="-1">
<option>Select an option</option>
<option value="home">Home</option>
</select>
</div>
</body>
</html>