I have a link button that goes to another page, it works, but i want the link to go to a spicific part of that page. i know i should use jquery for thisand for some reason its not jumping to the section i want it to jump to.
My button link:
 <div class="btn_holder top-slide"><a 
  href="http://testurl.com/media#isabelo"><p class="leeu_button">READ
  MORE</p></a>
 </div>
What i currently have srolls to bottom of page and not to the section where id="isabelo". so this jquery works but its not what i want. hope you understand.
$(document).ready(function(){ 
//check if hash tag exists in the URL
if(window.location.hash) {          
    $("html, body").animate({ scrollTop: $(document).height() }, 1000);
    1000);      
}     });
I have also already tried this (not working at all) :
$(document).ready(function(){ 
//check if hash tag exists in the URL
if(window.location.hash) {          
     $('html, body').animate({ scrollTop: $("#isabelo").offset().top }, 1000);      
}
     });
the page im trying to link to has a div with a id="isabelo"
<div class="content_holder terms_row" id="isabelo">
 
     
     
     
    