How To Link To A Specific Part In The Same Page With Jquery And Php?
I know to link to a part in the same page like : AHere is A But when I designed it with jquery and php, ı have a proble
Solution 1:
Don't have the time to see all your code, but can't use a scrollTop() method ? See here.
Solution 2:
To scroll with jQuery to a specific ID in your page, use
$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
Post a Comment for "How To Link To A Specific Part In The Same Page With Jquery And Php?"