Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.63 KB | None | 0 0
  1.   jQuery("#IdOfReadMoreDIV").on('click',function(e){
  2.         e.preventDefault();
  3.        
  4.         jQuery('#IdOfHiddenText').slideToggle('fast', function(){
  5.             jQuery("html,body").animate({
  6.           scrollTop: jQuery("#IdOfHiddenText").offset().top},'fast');        
  7.          
  8.         });
  9.   });
  10.  
  11.         jQuery("#IdOfReadMoreDIV").toggle(function(){
  12.             jQuery("#IdOfArrowIcon", this).css("transform","rotate(180deg)");
  13.             jQuery('#IdOfReadMoreTEXT').text("See Less");
  14.         },function(){
  15.             jQuery("#IdOfArrowIcon", this).css("transform","rotate(0deg)");
  16.             jQuery('#IdOfReadMoreTEXT').text("Read More");
  17.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement