I use jquery slimScroll and I find it really useful, but unfortunately I have bumped into a problem with it.
So the problem in more detail is: if we use slimScroll with an item that has another item embedded, for which we also use slimScroll (that is slimScroll is used for both items), they do not function properly together – it is very difficult. Namely: the two items cannot be scrolled separately, in no way, not if we hover the mouse over it, nor if we click in it to make it active. In the test page I have inserted a textarea (just type into it) which also behaves in a weird way with slimScroll.
I made a test page: http://seven7.uw.hu/slimscroll/index.html
So I call the plugin on multiple elements like so:
$(".content").slimScroll({
'size': '8px',
'height': '450px'
});
$(".texta").slimScroll({
'size': '8px'
});
$(".contentInsideDiv").slimScroll({
'size': '8px'
});
As you can see from my test page sources, the content div includes the other elements. Thanks for the help.