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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hyperlinking a bookmark

Status
Not open for further replies.

ivalum21

MIS
Jul 14, 2004
63
US
I have a book mark set up like this:

Code:
<a href="###GetCat.CatID#"><h3>#GetCat.CategoryName#</h3></a
..
..
..
<cfoutput>
			<a name="#GetCat.CatID#"><h2>#GetCat.CategoryName#</h2><br></a>
</cfoutput>

My first <a href> displays the category names at the top, hyperlinked to the bookmark I have set below. The bookmark just displays as text...and below them are data pertaining to that category. Now I want the bookmark to be hyperlinked to another page, but I already have it wrapped in a <a href> to reference the hyperlink above.

Do I put in another <a href> around the one I already have to hyperlink the category names?
 
Code:
<cfoutput>
  <h2><A href="..link here..">#GetCat.CategoryName#</a></h2><a name="#GetCat.CatID#">&nbsp;</a><br>
</cfoutput>

ALFII.com
---------------------
If this post answered or helped to answer your question, please reply with such so that forum members with a similar question will know to use this advice.
 
yep that would be the way to go. simple.

grtfercho çB^]\..
"Imagination is more important than Knowledge" A. Einstein
-----------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top