in the "Known issues" at JScrollPane site, there's a:
In Webkit browsers CSS must be included before Javascript
i did that but sometimes im still getting (only in the first page, the index) some scroll problems, the scroll just disappears and after i refresh the page again its all ok
my browser cache is empty so is not that.. also i tried using:
$.ajaxSettings.cache = false;
the code im using for my scroll is similar to the ajax example:
$(document).ready(function() {
var api = $('#mydiv').jScrollPane({ showArrows: false, reinitialiseOnImageLoad: true }).data('jsp');
$('.a_link').live('click', function() { ... ....
how can i fix this?