Show/hide select menu
Description
The following code shows how to show/hide select menu.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from w w w . j a v a 2 s . c o m-->
$(document).on('click', '.hide', function () {
$("#mySelect").closest('div.ui-select').hide();
});
$(document).on('click', '.show', function () {
$("#mySelect").closest('div.ui-select').show();
});
});//]]>
</script>
</head>
<body>
<select name="mySelect" id="mySelect">
<option>1</option>
<option>2</option>
</select>
<a href="#" data-role="button" class="hide">Hide select</a>
<a href="#" data-role="button" class="show" data-theme="e">Show
select</a>
</body>
</html>