Use iScroll v4. Keep header and footer fixed and scroll only the content. iScroll needs a wrapper DIV and child element. In the example below the content_items is the child div with the items to scroll. I noticed that you can not combine the data-role="content" and the wrapper DIV for iScroll in one HTML element!.
<script type="text/javascript">
var myScroll;
$(document).ready(function () {
myScroll = new iScroll('wrapper');
});
</script>
<div data-role="page">
<div id="header" data-role="header" data-position="fixed"></div>
<div id="content" data-role="content" class="contentcontainer contentsearched">
<div id="wrapper">
<div id="content_items" class="content_items"></div>
</div>
</div>
<div id="footer" data-role="footer" data-position="fixed">
<div data-role="navbar"></div>
</div>
</div>