Topic awaiting preservation: a:hover properties, accessible with javascript? |
|
---|---|
Author | Thread |
Paranoid (IV) Inmate From: Northumberland, England |
posted 11-03-2003 14:01
Hi, |
Paranoid (IV) Inmate From: Dublin, Ireland |
posted 11-04-2003 00:06 |
Paranoid (IV) Inmate From: Northumberland, England |
posted 11-04-2003 01:43
quote:
|
Bipolar (III) Inmate From: schillmania.com |
posted 11-04-2003 05:55
Only thing I can think of is a:visited or a:active .. look up other pseudo-states on anchor tags though, that'd be presumably where you may find what you're looking for. |
Paranoid (IV) Inmate From: France |
posted 11-04-2003 07:38
You could alter the link's class. code: <a href="#" class="initialClass" onclick="this.className+=' additionnalClass'">blah</a> You can manipulate the className property at will to make for instance a toggle behavior. |
Paranoid (IV) Inmate From: Dublin, Ireland |
posted 11-06-2003 12:26
thanks ! |