CSS - while using a onClick="window.open('mypage.php')"?

O Xabarin

New member
When using a Javascript link, the CSS styles I set up for links don't work in IE and Chrome.
However, Firefox and Opera do underline and change color on hover, as I intended.
In no browser the cursor is the 'pointer'.
How to make them behave as regular links?
When I posted this I had specified:
a:link
a:visited
a:hover
a:active
 
For IE you need to specify all elements of the a tag.

a:link
a:visited
a:hover
 
Back
Top