Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am using jquery mobile .i Have one header and dynamically created table .But when i check my code on browser it working fine but when i check on ipad simulator Whole page is scrolling with header .How to prevent header scrolling in Ipad .I need only table view scroll with fixed height .Here is my code in fiddle

http://jsfiddle.net/ravi1989/Q9QmF/1/

var content = "";
for (i = 0; i < 30; i++) {
content += '';
}
content += "
' + 'result ' + i + '
"
$('#here_table').append(content);


$(".row").click(function() {
alert(this.id);
});
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900