Here is my code snippet:
http://jsfiddle.net/7CuBV/6/
If i click and drag over the input text field, I get the div with overflow:hidden scrolling as it would
Set scrollLeft and/or scrollTop to 0 in the "onscroll" event, this will disable scrolling:
var div = $(".overflow-hidden"); div.scroll(function() { div.scrollTop(0).scrollLeft(0); });