javascript - How to Enable scroll for specific div and disable scroll for page -


is possible disable scroll page, , enable specific div inside page?

to disable use:

css

.disablescroll{       overflow-y:hidden;       overflow-x:hidden; } 

just add <body class="disablescroll"> disable

inline style <body style="overflow:hidden">

for div use, leave scrolling enabled <div style="overflow:auto;">

keep in mind can use overflow-y vertical scroll , overflow-x horizontal scroll properties


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -