tags:

views:

187

answers:

2

alt text

Whenever a click event happen on a hyper-link, I will use JavaScript to toggle the display of a drop down menu. However, I realize there will be a dotted line rectangle surrounded the hyper-link still. May I know how I can explicitly remove the dotted line rectangle after the click?

+3  A: 

Put this into your CSS

a:focus { outline:none }

Vlad
Thanks very much Vlad...it worked great.
gov
+2  A: 

a { outline:none; }

will do the trick

Jonathan Lyon