0 / 60 seg.

jQuery has a main function for handling AJAX, and several shorthand function including load() that make calling that main function easier. Given this HTML snippet, how can you insert only the second snippet from the source.html file (div#one) into the #load-me div on-demand via AJAX?

<div id="load-me">This area will be replaced with AJAX loaded content.</div>
<div id="one">
  <h1>First Piece</h1>
  <p>Lorem ipsum duis maximus quam condimentum dolor eleifend scelerisque.</p>
</div>
<div id="two">
  <h1>Second Piece</h1>
  <p>Lorem ipsum proin facilisis augue in risus interdum ornare.</p>
</div>