• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Hyperlink hangs.

Guest
Oct 13, 2019 Oct 13, 2019

Copy link to clipboard

Copied

 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

Views

865

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Oct 15, 2019 Oct 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
...

Votes

Translate

Translate
Community Expert ,
Oct 13, 2019 Oct 13, 2019

Copy link to clipboard

Copied

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 & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 13, 2019 Oct 13, 2019

Copy link to clipboard

Copied

I think that you will find it here asghosting.net
Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 15, 2019 Oct 15, 2019

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Oct 21, 2019 Oct 21, 2019

Copy link to clipboard

Copied

LATEST

Thank you Anissa,

That worked.

 

Tony

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines