1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to create corresponding point on a webpage

Discussion in 'Programming' started by terence2.0, Apr 4, 2014.

  1. #1
    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...
     
    terence2.0, Apr 4, 2014 IP
  2. winnerdomains

    winnerdomains Active Member

    Messages:
    133
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    90
    #2
    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):
     
    winnerdomains, Apr 10, 2014 IP
  3. terence2.0

    terence2.0 Greenhorn

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #3
     
    terence2.0, Apr 23, 2014 IP