I guess, since you do not advance by via an anchor, there would be no history to activate the browser back button.
You could link back to #startpage using either:
1. <a href="#startpage" ..........>Back</a> OR
2. <button id="back">Back</button>
$('#back').on('click',function() {
$.mobile.changePage( $('#startpage'), [options]); //if you want transition for example
});