So I\'m trying to make a scrollable list:
Nice thread here, like to contribute a small note:
If you like the grey areas in Safari to disappear in jQuery mobile pages when scrolled, you can use:
document.ontouchmove = function(e){
e.preventDefault();
}
Also more importantly, this will enable you to work with offline databases more efficiently, because normally the UI (touchmove event) interrupts SqlLite DB functions on mobile devices, this way interruption is avoided.