Liquid Fire Posted April 14, 2007 Share Posted April 14, 2007 how can i scroll in content like done on this site when you click on the rating? Link to comment https://forums.phpfreaks.com/topic/46972-simple-question/ Share on other sites More sharing options...
Goose Posted April 15, 2007 Share Posted April 15, 2007 An easy way to scroll within a document is by setting up anchors. Basically if you put this code somewhere in the document <a name="anchor_example">Anchor Example</a>, then anywhere else in the document you can make a link to that anchor by doing this: <a href="#anchor_example">Click here to scroll to our Anchor Example</a>. Link to comment https://forums.phpfreaks.com/topic/46972-simple-question/#findComment-229925 Share on other sites More sharing options...
fenway Posted April 20, 2007 Share Posted April 20, 2007 .scrollIntoView() works as well. Link to comment https://forums.phpfreaks.com/topic/46972-simple-question/#findComment-233901 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.