Questions tagged [jquery-jscrollpane]

jScrollPane is a cross-browser jQuery plugin which can be used to generate custom scrollbars on HTML block elements.

jScrollPane is a cross-browser jQuery plugin by Kelvin Luck which can be used to generate custom scrollbars on HTML block elements.

210 questions
3
votes
2 answers

JQuery jScrollPane reinitialise

I'm using the JQuery plugin jScrollPane I'm intialising it as follows.. It works initially but when I try and change the settings and reinitialise it it doesnt work properly it kindof flickers and then returns to it's previous state, any…
Mantisimo
  • 4,203
  • 5
  • 37
  • 55
3
votes
1 answer

jscrollpane not visible

I've got a lot of jquery madness going on with my page, and i'm wondering if that's the reason jscrollpane doesn't show. See http://jasondaydesign.com and click on the sculpture menu item on the left and then on the remaining div on the…
Jason
  • 7,612
  • 14
  • 77
  • 127
3
votes
2 answers

jScrollPane theme with CSS

I want to apologize now for my bad english, i hope you will understand what i want: I recently used the plugin jquery 'jScrollPane' on my website malossane.fr/sqf/. Everything is ok, but i appeared to not be able to make the only little change i…
3
votes
1 answer

How do you style the scrolling part in jScrollPane?

I have no idea how to style the box that you drag to scroll on jScrollPane. I have tried .jspScrollBar; no luck. Fiddle
Joe Pigott
  • 7,981
  • 6
  • 31
  • 43
3
votes
1 answer

jScrollPane scrolling amount

I'm using jScrollPane and trying to find out how to get the scrolling amount. Basically I want to know when user reaches the bottom of the scroll so I can fire another function. This is my function: in_page_scroll : function() { "use strict"; …
Jay
  • 1,384
  • 1
  • 17
  • 30
2
votes
0 answers

jScrollPane always show vertical scroll bar

Is there a way to force the jquery jScrollPane to always show the vertical scroll bar now? I saw a post about adding an element to the pane with a min-height to force it but that was a year or so ago. I've also seen posts about adding…
2
votes
0 answers

Assigning a variable to jScrollPane scrollByX in horizontal image scroller?

I'm using jScrollPane to build a horizontal image scroller with images of varying widths at http://tmcdomains.com/jScrollPane/tmc_scroll_to_animate.html. I'd like to have the scrollpane move forward and backward by the width of each image with each…
2
votes
1 answer

jscrollpane not reinitializing in IE

I am using the fantastic scrollbar replacement plugin - jScrollpane I have a table which I append rows to via a json request that gets made to the server when the user scrolls to the bottom. Everytime I make this request, upon completion I…
gordyr
  • 6,078
  • 14
  • 65
  • 123
2
votes
0 answers

How to move scrollbar in a jquery-jscrollpane to textarea cursor position

I try to implement in jsfiddle. When textarea expand scrollbar not move to textarea cursor. JavaScript: function addJScrollPaneTo($container) { // use jScrollPane jquery plugin $container.jScrollPane({ verticalGutter: 1, …
KiM
  • 21
  • 2
2
votes
1 answer

jScrollPane: when i call to reinitialise(), doesn't create jspVerticalBar div in google chrome

i have a div with some content when the page load:

some html

and i wait to the user make a click in some button in order to…
armandfp
  • 1,059
  • 1
  • 9
  • 18
2
votes
2 answers

jQuery datatables and jScrollPane - table header doesn't scroll

I tried to have jquery datatables and jScrollpane work together, it went well but one thing.. when I scroll the table to the right, the header doesn't seem to get along. here's my code snippet on my html: $("#my-table").dataTables({ // ... …
mythjs
  • 21
  • 1
  • 4
2
votes
1 answer

jScrollPane overrides absolute positioning, how do I re-enable?

I am trying to use the jScrollPane described here: http://jscrollpane.kelvinluck.com/
Title of Content In Scroll Pane
2
votes
4 answers

When Jquery jScrollPane is reinitialized, it goes back to the top. Why?

I'm using jquery library jScrollPane to set the custom scroll bar for the whole page. scroll_bar = $('body>div').jScrollPane( { autoReinitialise: true, showArrows: true, maintainPosition: false …
Sherzod
  • 5,041
  • 10
  • 47
  • 66
2
votes
1 answer

Search inside jScrollPane?

Without jscrollpane, a search from firefox (ctrl+f) on a page with a limited height div with overflow:auto, reach words that are not visibles. With jscrollpane, words are also found but don't scroll directly to them. Is there a way to have the same…
pipcat
  • 21
  • 1
2
votes
1 answer

jscrollpane - synchronize two divs

I have a scrollbar customized with jscrollpane.js. How can I make this scrollbar control scrolling of another div? The second div has overflow: hidden. I know this should be possible; there's a few suggestions at this link, but for some reason none…
1
2
3
13 14