Say I have the following markup:
<h1>Hello</h1>
and now, I want to add <span id="foo" class="bar">world</span> after Hello so that I have I have the resulting markup:
<h1>Hello<span id="foo" class="bar">world</span></h1>
How do I do this in jQuery?