Toggle another control based on flip switch
Description
The following code shows how to toggle another control based on flip switch.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css">
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from w w w. ja va 2 s. c om-->
$('#enter_joint').hide();
$('#joint').change(function(){
$('#enter_joint').toggle('show');
});
});//]]>
</script>
</head>
<body>
<fieldset data-role="controlgroup">
<label for="joint">Is this a joint gift?</label>
<select name="slider" id="joint" data-role="slider">
<option value="no">No</option>
<option value="yes">Yes</option>
</select>
<div id="enter_joint">
<label for="other_joint">Spouse Name:</label>
<input name="other_joint" id="other_joint" value="" data-theme="d" />
</div>
</fieldset>
</body>
</html>