Hello all, I hope I am on the right place to post this question. I am looking to produce an online jogging track with various checkpoints along the way. And my question is how to make 2 of the checkpoints "correspond" with each other when users click on both points on the web page in order to get some relative data? By the way this feature is not GPS ENABLE I am new to programming so I hope the question does not sound confusing...
So you want to redirect the user to another point of the same web page, right? If so, you can just add an id attribute to the place you are trying to redirect. Example... <div id = "redirectArea">Will redirect here</div> <a href = "#redirectArea">Click Here</a> Code (markup):