You can create a function using JQuery that loads data (in the case below into an un-ordered list):
function load_list(page_num) {
$.get('location_of_output_script.php?page=' + page_num, function (data) {
$('#add_html_to_me > li.click_to_see_more').remove();
$('#add_html_to_me').append(data);
});
}
Your page would need some element (an un-ordered list in this case) to which the new items would be appended:
<div data-role="content">
<ul id="add_html_to_me"></ul>
</div>
Your output script ('location_of_output_script.php' in this example) could then return the desired number of results when a button is clicked (or perhaps when the user has scrolled close enough to the bottom of the list). Here is a sample of the output I am imagining:
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
<li>List item 5</li>
<li class="click_to_see_more">Click Me To View More Rows</li>
SOME NOTEs:
In my example you would load a button onto the end of each output from the server-side script that would be removed just before adding the next set of rows.
You could replace the content of your list instead of adding to it by using the .html() function rather than .append().
You may need to call .listview() on the <ul> tag to have JQuery Mobile style the new content in the list.
If you want to add a spinner or some type of progress bar you can display it before you make the $.get call and then hide it inside of the success function of that call.