Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. $("a.fancy").livequery(function() {
  2. $(this).fancybox({
  3. 'overlayColor': fancyoverlay,
  4. 'overlayOpacity': fancyopacity,
  5. 'transitionIn': 'fade',
  6. 'transitionOut': 'fade',
  7. 'speedIn': 600,
  8. 'speedOut': 200,
  9. 'href': $(this).attr('href'),
  10. 'type': 'image',
  11. 'paginatenext': function() {
  12. if ($('div#pagination .next a').length) {
  13. window.location.href = $('div#pagination .next a').attr('href') + '&autoload=first';
  14. } else {
  15. alert ("That's it for now!");
  16. }
  17. },
  18. 'paginateprev': function() {
  19. if ($('div#pagination .previous a').length) {
  20. window.location.href = $('div#pagination .previous a').attr('href') + '&autoload=last';
  21. } else {
  22. alert ("That's it for now!");
  23. }
  24. },
  25. });
  26. return false;
  27. });
Add Comment
Please, Sign In to add comment