+ 6
how do i create a link that takes the user somewhere within the web page ?
when the user clicks the link it should go somewhere within the web page
2 Respostas
+ 9
<a href="#idOfTarget">click me to scroll to the target...</a>
... and somewhere else:
<div id="idOfTarget">You got it! :)</div>
Or anyelse tag element, obviously ^^
+ 7
visph is right.