Return to Snippet

Revision: 10304
at December 17, 2008 04:11 by localhorst


Initial Code
window.addEvent("domready", function() {	
 $$('a img').each(function(el) { 
         el.addEvent('focus', function(e) {
             this.blur();  
         });  
     });   		
});

Initial URL


Initial Description
simple if your client wish to remove the dotted outline from images if they are clicked (and if they are links).

Initial Title
[mootools] remove onfocus dotted outline from clicked link images

Initial Tags


Initial Language
JavaScript