On Oct 15, 2006, at 7:58 AM, Klaus Hartl wrote:

> $('a.clickme').click(function() {
>      $(this).next('div').show();
>      this.blur();
> });
>
Thanks a lot, Klaus! This works in my test. So, it's a matter of  
using the built-in JavaScript variable "this" instead of the jQuery  
object "$(this)", right?

> In Firefox >= 1.5, if you want to remove the dotted border put the
> following into your style sheet:
>
> a:focus, a:active {
>      outline: none; /* @ Firefox 1.5, remove ugly dotted border */
> }

Yeah, I knew about that, but since it doesn't work in IE, I was  
hoping for a more browser-neutral solution. Looks like you provided  
it for me with this.blur(). Thanks again!

Karl


___________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to