checkbox and anchor on a div collapsible

checkbox and anchor on a div collapsible

Hello !

I'm beginning with JQuery Mobile and already have a first question.
I've created some collapsible div inside collapsible div ... etc as shown below :
  1. <div data-role="collapsible-set" data-theme="b" data-content-theme="d">';
  2. <div data-role="collapsible">
  3.       <h3>Test 1</h3>
  4.       <div data-role="collapsible-set" data-theme="b" data-content-theme="d">
  5.             <div data-role="collapsible">
  6.                   <h3>Test 1_1</h3>
  7.                   <div data-role="collapsible-set" data-theme="b" data-content-theme="d">
  8.                         <input type="checkbox">
  9.                         <div data-role="collapsible">
  10.                               <h3>Test 1_1_1</h3> 
  11.                         </div>
  12.                         <input type="checkbox">
  13.                         <div data-role="collapsible">
  14.                               <h3>Test 1_1_2</h3>
  15.                         </div>
  16.                         <div data-role="collapsible">
  17.                               <h3>Test 1_1_3</h3>
  18.                         </div>
  19.                   </div>
  20.             </div>
  21.             <div data-role="collapsible">
  22.                   <h3>Test 1_2</h3>
  23.             </div>
  24.       </div>
  25. </div>
  26. <div data-role="collapsible">
  27.       <h3>Test 2</h3>
  28. </div>
  29. </div>

My problem is that I don't succeed in inserting a checkbox on the same line as my <h3> text and,  even if I would succeed in, I suppose I'll have some troubles to check in/out this checkbox since the click would be understood as an event to open the collapsible menu.
I have the same problem If I want to insert an anchor on the same line as my <h3> text.

Any idea to help me ?
Thanks !