cmoreira

testimonials pagination

Nov 6th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  jQuery('a.ttshowcase_page').attr('href',function(){
  2. var newurl = jQuery(this).attr('href').replace('#ttshowcase_0', '');
  3. return newurl;
  4. });
  5.  
  6. jQuery('a.ttshowcase_next').attr('href',function(){
  7. var newurl = jQuery(this).attr('href').replace('#ttshowcase_0', '');
  8. return newurl;
  9. });
  10.  
  11. jQuery('a.ttshowcase_previous').attr('href',function(){
  12. var newurl = jQuery(this).attr('href').replace('#ttshowcase_0', '');
  13. return newurl;
  14. });
  15.  
  16. if(window.location.href.indexOf("ttpage") > -1) {
  17.       jQuery('html,body').animate({
  18.    scrollTop: jQuery("#ttshowcase_0").offset().top
  19. });
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment