Style non native select control
Description
The following code shows how to style non native select control.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head><!--from w w w .j ava2 s . com-->
<body>
<div data-role="page" data-add-back-btn="true" id="frontPage">
<div data-role="header" data-theme="b">
<h3 id="heading">test</h3>
</div>
<div data-role="content">
<select data-native-menu="false" data-iconpos="notext">
<option data-placeholder="true" data-theme="a">Heading</option>
<option>First</option>
<option>Second</option>
</select>
</div>
</div>
</body>
</html>