hi , I have some trouble trying to implement a Gallery for each post.
well in fact the problem is not making it work, the problem is that the website slows down like a tourtle.
I use cycle for every gallery:
var
id = $('#gallery-id-<?php the_ID(); ?>'),
container = $('#container'),
leftArrow = $('#leftArrow'),
rightArrow = $('#rightArrow')
id.cycle({
timeout:0,
fx:'scrollHorz',
prev: prv,
next: nxt,
easing: 'easeOutExpo'
});
But Generating a gallery for 10 post is making the site super slow....
and well cycle is not the only plugin called in a post , it also use , jspScroll, qTip, etc.
what do you recommend to add jquery, in every post , to show content accurate and fast?
thanks