Skip to main content
October 13, 2019
解決済み

Hyperlink hangs.

  • October 13, 2019
  • 返信数 2.
  • 1091 ビュー

 C6

I modifid a template .

Added a table put domain names in each cell and made hyperlinks for each.

I go down the list and open each domain to make sure they are working.

Each domain has the same page, when i go down the list to each one they work perfect but randomly some hang and will not let   me move on no matter what hyperlink i click.

Each domain has the same page so if you go to one page your now using that ones hyperlink page

 

asghosting.net

    このトピックへの返信は締め切られました。
    解決に役立った回答 anissa_thompson

    I think you're trying to have each link open in a new page/window... if that's correct, you'll need to add the target="" attribute to each link's anchor tag. For example, just taking a small section of your current code, 

    <tr>
       <td><a href="http://www.allhealth.fitness">allhealth.<span class="red">fitness</span></a></p></td>
       <td><p><a href="http://www.boardcertified.dentist">boardcertified.<span class="red">dentist</span></a></p></td>
       <td><p><a href="http://www.family.healthcare">family.<span class="red">healthcare</span></a></p></td>
       <td><p><a href="http://www.offices.cleaning">offices.<span class="red">cleaning</span></a></p></td>
    </tr>

    all of these links will open in the same window automatically.

     

    target="_blank" | You'd need to update to something like this for them to open in individual, non-recycling windows: 

    <tr>
       <td><a href="http://www.allhealth.fitness" target="_blank">allhealth.<span class="red">fitness</span></a></p></td>
       <td><p><a href="http://www.boardcertified.dentist" target="_blank">boardcertified.<span class="red">dentist</span></a></p></td>
       <td><p><a href="http://www.family.healthcare" target="_blank">family.<span class="red">healthcare</span></a></p></td>
       <td><p><a href="http://www.offices.cleaning" target="_blank">offices.<span class="red">cleaning</span></a></p></td>
    </tr>

     

    target="new" | You'd need to update to something like this for them to open in ONE new recycling window:

    <tr>
       <td><a href="http://www.allhealth.fitness" target="new">allhealth.<span class="red">fitness</span></a></p></td>
       <td><p><a href="http://www.boardcertified.dentist" target="new">boardcertified.<span class="red">dentist</span></a></p></td>
       <td><p><a href="http://www.family.healthcare" target="new">family.<span class="red">healthcare</span></a></p></td>
       <td><p><a href="http://www.offices.cleaning" target="new">offices.<span class="red">cleaning</span></a></p></td>
    </tr>

     

    Start with a fresh browser window and test it out to get the results you want.

    Hope this helps.

    返信数 2

    anissa_thompson
    Community Expert
    Community Expert
    October 15, 2019

    I think you're trying to have each link open in a new page/window... if that's correct, you'll need to add the target="" attribute to each link's anchor tag. For example, just taking a small section of your current code, 

    <tr>
       <td><a href="http://www.allhealth.fitness">allhealth.<span class="red">fitness</span></a></p></td>
       <td><p><a href="http://www.boardcertified.dentist">boardcertified.<span class="red">dentist</span></a></p></td>
       <td><p><a href="http://www.family.healthcare">family.<span class="red">healthcare</span></a></p></td>
       <td><p><a href="http://www.offices.cleaning">offices.<span class="red">cleaning</span></a></p></td>
    </tr>

    all of these links will open in the same window automatically.

     

    target="_blank" | You'd need to update to something like this for them to open in individual, non-recycling windows: 

    <tr>
       <td><a href="http://www.allhealth.fitness" target="_blank">allhealth.<span class="red">fitness</span></a></p></td>
       <td><p><a href="http://www.boardcertified.dentist" target="_blank">boardcertified.<span class="red">dentist</span></a></p></td>
       <td><p><a href="http://www.family.healthcare" target="_blank">family.<span class="red">healthcare</span></a></p></td>
       <td><p><a href="http://www.offices.cleaning" target="_blank">offices.<span class="red">cleaning</span></a></p></td>
    </tr>

     

    target="new" | You'd need to update to something like this for them to open in ONE new recycling window:

    <tr>
       <td><a href="http://www.allhealth.fitness" target="new">allhealth.<span class="red">fitness</span></a></p></td>
       <td><p><a href="http://www.boardcertified.dentist" target="new">boardcertified.<span class="red">dentist</span></a></p></td>
       <td><p><a href="http://www.family.healthcare" target="new">family.<span class="red">healthcare</span></a></p></td>
       <td><p><a href="http://www.offices.cleaning" target="new">offices.<span class="red">cleaning</span></a></p></td>
    </tr>

     

    Start with a fresh browser window and test it out to get the results you want.

    Hope this helps.

    Hope this helps! Make sure to press "✔ Correct Answer" on this post if this answers your question. Happy Creating!Anissa • @anissat
    October 21, 2019

    Thank you Anissa,

    That worked.

     

    Tony

    Nancy OShea
    Community Expert
    Community Expert
    October 13, 2019

    Sorry but without a link to your page, I have no idea what any of this this means. 

     

    "Each domain has the same page, when i go down the list to each one they work perfect but randomly some hang and will not let me move on no matter what hyperlink i click.

    Each domain has the same page so if you go to one page your now using that ones hyperlink page"

     

    Nancy O'Shea— Product User & Community Expert
    BenPleysier
    Community Expert
    Community Expert
    October 13, 2019
    I think that you will find it here asghosting.net
    Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!