Click label to trigger select menu popup
Description
The following code shows how to click label to trigger select menu popup.
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">
<style type='text/css'>
.container {<!--from w w w . ja v a2 s . c om-->
position: relative;
margin: 2em;
}
label.select {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
cursor: pointer;
}
.select-contain {
top: 30px;
position: relative;
}
</style>
</head>
<body>
<div class="container">
<label for="select-choice-7" class="select"
onclick="$('#select-choice-7').selectmenu('open');">Label</label>
<div class="select-contain">
<select name="select-choice-7" id="select-choice-7"
data-native-menu="false"> cur
<option value="standard">Standard: 7 day</option>
<option value="rush">Rush: 3 days</option>
<option value="express">Express: next day</option>
<option value="overnight">Overnight</option>
</select>
</div>
</div>
</body>
</html>