Change button text inside collapsible

Description

The following code shows how to change button text inside 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 ww  . j  a va2s .  co  m-->
$(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>

Click to view the demo





















Home »
  jQuery Mobile »
    Example »




Button
Button Event
Button Icon
Button Text
Checkbox
Collapsible
Date
Dialog
Event
Footer
Form
Header
Icon
Input
Layout
Listview
Listview Divider
Listview Item
Loader
mobile_settings
Navbar
Page
Page Event
Popup
Radio
Select
Slider
Switch
Textarea
Theme