Questions tagged [mcustomscrollbar]

mCustomScrollbar is a highly customizable custom scrollbar jQuery plugin.

Highly customizable custom scrollbar jQuery plugin. Features include vertical and/or horizontal scrollbar(s), adjustable scrolling momentum, mouse-wheel via jQuery mousewheel plugin, keyboard and touch support, ready-to-use themes and customization via CSS, RTL direction support, option parameters for full control of scrollbar functionality, methods for triggering actions like scroll-to, update, destroy etc., user-defined callbacks and more.

91 questions
1
vote
0 answers

Why mCustomScrollbar does not work correctly?

I'm using a plugin for scrolling a content that have an option "moveDragger": function customScrollBar() { if($(".dropdown .close_list").length) { $(".dropdown .close_list").mCustomScrollbar({ scrollInertia: 300 }); } if…
rinatoptimus
  • 427
  • 1
  • 5
  • 21
1
vote
1 answer

jQuery scrollbar conflicts with hit counter script (document.write)

I'm currently trying to install this custom scroller on my tumblr blog: http://manos.malihu.gr/jquery-custom-content-scroller/ It all works perfectly until I added a text hit counter to my blog and my entire content disappeared. Here's the jQuery…
1
vote
0 answers

Jquery UI Sortable jerky behaviour with MCustomScrollbar

I have implemented jQuery UI sortable in my project. In my implementation I have large number of records which around 10,000 at an average. I store the index of each record in my database. The implementation is working fine but due to…
1
vote
1 answer

Select2 options not scrolling with custom scrollbar

I have got a Div with fixed height and applied custom scroll to it. Now when I scroll this Div content with mouse wheel, then the select2 options (when kept open) do not scroll along with respective select2 dropdown. Here is the JSFiddle of my…
1
vote
0 answers

wow.js not working with mCustomScrollbar

I have applied mCustomScrollbar to the body of my page which has wow.js I am forced to apply a height: 100% to the body of my my page and this stops wow working Is there any way around this?
Chris
  • 21
  • 2
1
vote
1 answer

jquery Chosen and mCustomScrollbar not working properly together

I use jquery Chosen together with malihu's plugin mCustomScrollbar and I found it not compatible. I want to apply the scrollbar on chosen result and its not working. Here is my working fiddle to see my work. HTML: $(function() { …
SMPLYJR
  • 854
  • 1
  • 11
  • 23
1
vote
1 answer

Installing the right typings from DefinitelyTyped

I'm trying to install typings(version 1.3.2 atm) for malihu-custom-scrollbar-plugin(typings). I'm using the following command: typings install dt~mcustomscrollbar --save --global This installs typings which later on are identified as wrong(error…
1
vote
0 answers

Angular Infinite scroll + mcustomScrollbar for table body

I am trying to implement the Angular JS infinite scroll with fixed header and fixed column. And in the mean time am adding the mcustomscrollbar for scroll features. I can able to add the scroll functionality outside the table i.e if we add scroll to…
1
vote
3 answers

mCustomScrollbar prepend new content

I am using mCustomScrollbar and I am trying to dynamically load content on top and bottom of the scroll (of course, not the same time). http://manos.malihu.gr/jquery-custom-content-scroller/ When appending content it works awesome, the scroll will…
Robin
  • 187
  • 1
  • 10
1
vote
0 answers

jQuery mCustomScrollbar function after scrollTop

I'm using jQuery mCustomScrollbar on my website. I'm using 2 functions, using the same onClick action: $('body').on('click', '.infos_open', function () { First I want my custom content to scroll…
mmdwc
  • 1,095
  • 6
  • 27
  • 53
1
vote
1 answer

How to use height: auto property in css with JQuery custom content scroller when calling mCustomScrollbar() manually

I am trying to use the JQuery custom scroll-bar script discussed here on my jekyll powered Github site. I would like to it use for scrolling code blocks in each page such that for each code block there is a horizontal or vertical (or both) scroll…
shekeine
  • 1,445
  • 10
  • 22
1
vote
0 answers

jQuery custom content scroller horizontal issues with persian and responsive

I'm using this plugin for adding custom scrolling function into my web page. (http://manos.malihu.gr/jquery-custom-content-scroller/) At some section I need a newspaper-like content/post with columns to be scrolled horizontally, but the problem…
Ali Tabibzadeh
  • 193
  • 1
  • 2
  • 13
1
vote
0 answers

mCustomScrollbar jquery plugin

Here's my HTML, first the
, I used a script that appends a content inside these div which has a css property of "overflow:auto". Once the contents have overflowed inside, the scroll-bar always appeared by default which was…
0
votes
0 answers

scrollify and malihu-custom-scrollbar-plugin on touch devices

I'm building a website with vertical split screens and full viewport sections. Each section is divided in half where every side can have overflow content. When theres no overflowing content, the page should scroll to the next section. When theres…
hes
  • 121
  • 2
  • 14
0
votes
0 answers

How to make mCustomScrollbar horizontal in infinite continue loop

function AutoScrollOn(to, timer) { if (!timer) { timer = autoScrollTimer; } content.addClass("auto-scrolling-on").mCustomScrollbar("scrollTo", to, { scrollInertia: timer, scrollEasing: "linear", }); autoScroll =…