How can I hide an image mask when link is active?
My page has 2 frames. First is menu and it has image links. When I click on image link white dashed border appears.
Printable View
How can I hide an image mask when link is active?
My page has 2 frames. First is menu and it has image links. When I click on image link white dashed border appears.
Try this inside your IMG tag:
onClick="this.blur()"
It'll cause the image to lose the focus. You might see a 'flash' when the image is clicked. This:
onFocus="this.blur()"
seems to work even better (no flash).
Paul