Hi im using jquery mobile 1.2.0 and using popups. i need to show a popup in my jquery mobile page which contains a listview but when the popup is show i can scroll it down while for example the header is in fixed position. i tried
$("#pushNotificationExample").bind({
popupafteropen: function(event, ui) {
$("#pushNotificationExample").css({position:'fixed', top:0}); }
});
but no luck. is there another way to do this?