Hide icon for select-choice
Description
The following code shows how to hide icon for select-choice.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.1.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
</head><!-- w w w . j a v a2s . c o m-->
<body>
<div data-role="page">
<div data-role="content">
<div data-role="fieldcontain">
<label for="select-choice-1" class="select">Choose shipping
method:</label>
<select name="select-choice-1" id="select-choice-1"
data-iconpos="noicon">
<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>
</div>
</body>
</html>