HighDots Forums  

removing "bold" style from all hyperlinks with DHTML

alt.html.dhtml alt.html.dhtml


Discuss removing "bold" style from all hyperlinks with DHTML in the alt.html.dhtml forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Alain
 
Posts: n/a

Default removing "bold" style from all hyperlinks with DHTML - 08-12-2004 , 09:01 AM






Hi,

With the following piece of code I can change the font-weight CSS property
of the hyperlink to a bold typeface:

<a href="index.html" onClick="style.fontWeight='bold'>"

I use this piece of HTML to make a hyperlink bold when clicking on it.
Problem is, when I click another link on the same page, the previous link
stays bold. And that's not what it is supposed to do - it should get a
normal font-weight again.

How can I do this, using only Javascript? I tried following JavaScript, but
it didn't worked:

onClick='document.getElementByTag("a").fontWeight= "normal"

How come? And does anyone know the answer?

Thanks in advance,

Alain



Reply With Quote
  #2  
Old   
Jari Lehtinen
 
Posts: n/a

Default Re: removing "bold" style from all hyperlinks with DHTML - 08-15-2004 , 04:33 PM






On Thu, 12 Aug 2004 15:01:48 +0200, Alain
<alains_NOSPAMpostbus (AT) hotmail (DOT) com> wrote:

Quote:
Hi,

With the following piece of code I can change the font-weight CSS
property
of the hyperlink to a bold typeface:

a href="index.html" onClick="style.fontWeight='bold'>"

I use this piece of HTML to make a hyperlink bold when clicking on it.
Problem is, when I click another link on the same page, the previous link
stays bold. And that's not what it is supposed to do - it should get a
normal font-weight again.

How can I do this, using only Javascript? I tried following JavaScript,
but
it didn't worked:

onClick='document.getElementByTag("a").fontWeight= "normal"

How come? And does anyone know the answer?

Thanks in advance,

Alain
Try:
<a href="index.html" onMouseDown="style.fontWeight='bold'"
onMouseUp="style.fontWeight='normal'">testing</a>

--
Jari Lehtinen
http://www.jarilehtinen.net


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.