While creating web using JQuery Mobile I recently faced issue header comes with back button which is not needed. There is a quick and easy way to disable it by adding data-backbtn=”false” to your header

<div data-role=”header” data-backbtn=”false”>
<h1>Sample Text </h1>
</div>

Happy coding !