I use the following function to trigger a +1 and -1 scroll using jQuery in order to make images show up when using lazyload in combination with isotope or else the images wouldn’t show up when filtering.
function forceLoad(){
$.scrollTo("+=1px");
$.scrollTo("-=1px");
};
It works in FF and Chrome browsers but not in Safari (testing with version 6).
Any ideas on what I could try to produce the same behaviour using jQuery?
The working code: