I am using jScrollPane to create custom scrolls on a div wich has it's content updated through ajax, using the .load() method (jQuery).
It works on the first time the content is loaded into the div, but when I cange contents the div still have the overflow: hidden, so jScrollPane makes no scroll for the new content. I tried clearing the overflow attribute like this:
$('#content .text').css('overflow', 'auto');
$('#content .text').jScrollPane();
But this makes the content div use the system scroll, not the custom scroll. So I tried this:
$('#content .text').css('overflow', 'none');
$('#content .text').jScrollPane();
However, I don't believe it exists at all. So I tried actually cleaning the attribute with this:
$('#content .text').css('overflow', '');
$('#content .text').jScrollPane();
But still had no success. Is there any other way I can do it?
- I can't clear the whole style attribute because I am using it to set dynamic heights and widths for the div.
Thanks in advance.