????
| Current Path : /home2/morganrand/www/coupon/ |
| Current File : /home2/morganrand/www/coupon/site.js |
$(document).ready(function(){
var timeoutId = null;
function rescheduleUpdate(){
clearTimeout(timeoutId);
timeoutId = setTimeout(function(){
clearTimeout(timeoutId);
$('.preview-img.active').fadeIn();
$('.preview-img').not('.active').fadeOut();
},50);
}
$('.preview-link').click(function(){
$img = $('.preview-img[id_node="'+$(this).attr('id_node')+'"]');
$('.preview-img').not($img).removeClass('active');
$img.addClass('active');
rescheduleUpdate();
});
});