JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<!DOCTYPE html> 
<html> 
<head> 
	<title>My Page</title> 
    <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>

JavaScript

$(document).ready(function() {
  $('#collapsePlace .ui-btn-text').text("hello ");
});