I'm using jquery and have an entire html page stored in var page
var page = '<html>...<div id="start">......</div><!-- start -->....</html>';
How can I extract only the section that starts with <div id="start"> all the way to after the end tag </div><!-- start --> such that my output is
<div id="start">......</div><!-- start -->