javascript - I can't make jquery scroll pane horizontal -


i have been using following code make vertical scroll bar scroll pane:

function scrollpane(){     $('.custom-scroll').jscrollpane({         showarrows: true,         verticaldragminheight : 0,         verticaldragmaxheight : 100,         mousewheelspeed: 120,         wheelspeed: 120,         contentwidth: '100px'     }); } 

i trying make horizontal scrollbar, not working. here code:

function scrollpane(){     $('.custom-scroll').jscrollpane({         showarrows: true,         verticaldragminheight : 0,         verticaldragmaxheight : 100,         mousewheelspeed: 120,         wheelspeed: 120,         contentwidth: '100px'     });     $('.horizontal_bar').jscrollpane({         showarrows: true,         contentwidth: '100px'     }); } 

and css have horizontal_bar:

.horizontal_bar{     width: 100%;     height: 200px;     overflow: auto; } 

how make horizontal scroll pane?


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -