I have a div, with a scroll bar, When it reaches the end, my page starts scrolling. Is there anyway I can stop this behavior ?
|
|
You can inactivate the scrolling of the whole page by doing something like this:
|
|||||
|
|
Found the solution. This is what I needed. And this is the code. http://jsbin.com/itajok/edit#javascript,html Uses a jQuery Plug-in. |
|||
|
|
|
You could use a mouseover event on the div to disable the body scrollbar and then a mouseout event to activate it again? E.g. The HTML
And then the javascript like so:
|
||||
|
|
|
If I understand your question correctly, then you want to prevent scrolling of the main content when the mouse is over a div (let's say a sidebar). For that, the sidebar may not be a child of the scrolling container of the main content (which was the browser window), to prevent the scroll event from bubbling up to its parent. This possibly requires some markup changes in the following manner:
See it's working in this sample fiddle and compare that with this sample fiddle which has a slightly different mouse leave behavior of the sidebar. See also scroll only one particular div with browser's main scrollbar. |
|||||||||
|
|
If you apply an edit: actually I read your question wrong, that will only hide the scroll bar but I don't think that's what you are looking for. |
|||||
|
