In the below code, I want to hide the scrollbar of the first block (div1) without using overflow property in all the browsers.
Any suggestions would be helpful.
Fiddle: http://jsfiddle.net/mvn1ngby/12/
$('#div1').scroll(function(){
    $('#div2').scrollTop( $('#div1').scrollTop() );
});
$('#div2').scroll(function(){
    $('#div1').scrollTop( $('#div2').scrollTop() );
});div.outer {
    display:inline-block;
    width:150px;
    height:320px;
    border:1px solid black;
    overflow-y:auto;
}
div.outer > div {
    height:3000px;
}
#div1 div {
  width:300px;
}<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="outer" id="div1">
    <div>
    </div>
</div>
<div class="outer" id="div2">
    <div>
    </div>
</div> 
     
    