in the Known Issues section of the JScrollPane website: a:
In browsers Webkit CSS must be included in Javascript
I did this, but sometimes I still get (only on the first page, index) some problems with scrolling, scrolling just disappears, and after refreshing the page everything is OK again
my browser cache is empty, so not so. also i tried using:
$.ajaxSettings.cache = false;
the im code used for my scrolling 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?
agg09 source
share