How can I separate in sections a document with headings?
Convert this
<h1>chapter 1</h1>
<p>lorem ipsum</p>
<p>sit amet</p>
<h1>chapter 2</h1>
<p>lorem ipsum</p>
<p>sit amet</p>
into this
<div class="chapter">
<h1>chapter 1</h1>
<p>lorem ipsum</p>
<p>sit amet</p>
</div>
<div class="chapter">
<h1>chapter 2</h1>
<p>lorem ipsum</p>
<p>sit amet</p>
</div>
I guess with jQuery this is easy, but I haven’t figured how yet.
Try something like this:
Example: http://jsfiddle.net/redler/YVF2w/