CSS/JQUERY make div scrollable without showing scrollbar
        Posted  
        
            by 
                Ispuk
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ispuk
        
        
        
        Published on 2012-10-03T21:14:21Z
        Indexed on 
            2012/10/03
            21:38 UTC
        
        
        Read the original article
        Hit count: 264
        
is there any way to make a div scrollable with overflow-y:hidden; and overflow-x:hidden?
i'm trying without success, maybe i need some js or jquery script?
i mean, i would like to make div scroll on y axes without showing scrollbar on right side( as it is now).
itryed:
.get-list{
  position:absolute;
  z-index:444;
  text-align: center;
  display: none;
  bottom:0;
  clear:both !important;
  left:0;
  right:0;
  top:11%;
  margin:0 auto;
  background:#fff;
  max-height:800px;
  overflow-y:no-display;
  overflow-x:hidden;
  display: block;
 }
thanks
EDIT
log-widget-list{
  position:absolute;
  z-index:444;
  text-align: center;
  display: none;
  width:99%;
  margin:0 auto;
  background:#fff;
  height:800px;
  overflow: hidden;
 }
.log-widget-list .scroller{
  overflow: scroll; 
  height:800px;
  width:100%;
}
it shows right scrollbar anyway
© Stack Overflow or respective owner