Hello.
I screwed to the div plugin jScrollPane . The jScrollPane block is created, but the scrollbar itself does not appear.
CSS:
$(function(){ $('#chat').jScrollPane();}); #chat { width: 325px; height: 260px; border: 1px solid #999999; overflow-y: auto;} .chat_box{ outline: none; border-radius: 2px; margin-bottom: 3px; width: 320px; height: 255px;} .scroll{ width: 335px; height: 270px;} <div class="scroll"> <div id="chat"> <div class="chat_box" contenteditable="true"> </div> </div> </div>