Set theme for collapsible
Description
The following code shows how to set theme for collapsible.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.8.3.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from w w w . ja v a 2s . c om-->
$(document).ready(function() {
$('#collapsePlace .ui-btn-text').text("hello ");
});
});//]]>
</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>My Title</h1>
</div>
<!-- /header -->
<div data-role="content">
<div data-role="collapsible" data-content-theme="e"
id="collapsePlace">
<h3 id='h3Text'>Place:</h3>
<!--things...-->
blah blah
</div>
</div>
<!-- /content -->
</div>
<!-- /page -->
</body>
</html>