Reputation: 113
I am having a asp:LinkButton to show a div on click. On showing the div I want to disable the background page(aspx page) from scrolling. How to do that? I have appplied overflow:hidden; css property to the body. It works fine in the browser but not in mobile devices such as samsung galaxy tablet version-2.2 and sony ericssion version 4.0.4.I want to disable the page scrolling when my application is viewed in mobile.
Please help. Any help will be appreciated. Thanks in Advance.
Upvotes: 1
Views: 401
Reputation: 816
Set overflow:scroll; on the body AND the HTML. Also set the position to fixed, position:fixed;.
Upvotes: 2