Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NEED HELP WITH CREATING LINKS

Status
Not open for further replies.

geneg28

IS-IT--Management
Aug 11, 2016
7
0
0
US
Hi,
I created a table with insurances for example "AETNA" I need to create a hyperlink when someone clicks on "AETNA" they go to external website. Can someone help?

<style type="text/css">
.tg {border-collapse:collapse;border-spacing:0;border:none;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 7px;border-style:solid;border-width:0px;overflow:hidden;word-break:normal;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 7px;border-style:solid;border-width:0px;overflow:hidden;word-break:normal;}
.tg .tg-7dc9{font-family:Georgia, serif !important;;color:#00009b;text-align:center;vertical-align:top}
.tg .tg-tjhe{font-family:Georgia, serif !important;;color:#00009b;text-align:center}
.tg .tg-565m{font-family:Georgia, serif !important;;color:#00009b;text-align:center;vertical-align:top}
</style>
<table class="tg" style="undefined;table-layout: fixed; width: 783px">
<colgroup>
<col style="width: 119px">
<col style="width: 119px">
<col style="width: 124px">
<col style="width: 113px">
<col style="width: 137px">
<col style="width: 171px">
</colgroup>
<tr>
<th class="tg-tjhe">AETNA</th>
<th class="tg-tjhe">BEECH STREET<br></th>
<th class="tg-tjhe">EMPIRE BC/BS</th>
<th class="tg-7dc9">1199</th>
<th class="tg-7dc9">MULTIPLAN</th>
<th class="tg-7dc9">UNITED HEALTHCARE<br></th>
</tr>
<tr>
<td class="tg-7dc9">AFFINITY<br></td>
<td class="tg-565m">CIGNA</td>
<td class="tg-7dc9">GREAT WEST<br></td>
<td class="tg-565m">HEALTH PLUS<br></td>
<td class="tg-7dc9">NEIGHBORHOOD</td>
<td class="tg-565m"></td>
</tr>
<tr>
<td class="tg-7dc9">AMERICHOICE</td>
<td class="tg-565m">COVENTRY</td>
<td class="tg-7dc9">GHI</td>
<td class="tg-565m">MAGNACARE</td>
<td class="tg-7dc9">OSCAR</td>
<td class="tg-565m"></td>
</tr>
<tr>
<td class="tg-7dc9">AMERIGROUP</td>
<td class="tg-565m">FIDELIS</td>
<td class="tg-7dc9">HEALTH FIRST<br></td>
<td class="tg-565m">NY MEDICAID</td>
<td class="tg-7dc9">OXFORD</td>
<td class="tg-565m"></td>
</tr>
<tr>
<td class="tg-7dc9">ATLANTIS</td>
<td class="tg-565m">FIRST HEALTH<br></td>
<td class="tg-7dc9">HIP</td>
<td class="tg-565m">METROPLUS</td>
<td class="tg-7dc9">TRICARE<br></td>
<td class="tg-565m"></td>
</tr>
</table>
 
Basic HTML hyperlinking
Code:
<th class="tg-tjhe">AETNA</th>


<th class="tg-tjhe"><a href='[URL unfurl="true"]http://www.targetsite.com'>AETNA</a></th>[/URL]

Keith
 
THANK YOU THAT'S WHAT I NEEDED!!!!
 
Code:
target="new"
is not a valid HTML directive

Actually it is, and means that the URL will be targeted to open in a frame (or iframe) with a name attribute of 'new'.

And of course ... if no such named object exists, it will create a new window.


Chris.

Indifference will be the downfall of mankind, but who cares?
Time flies like an arrow, however, fruit flies like a banana.

Never mind this jesus character, stars had to die for me to live.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top