/ Published in: JavaScript
simple if your client wish to remove the dotted outline from images if they are clicked (and if they are links).
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
window.addEvent("domready", function() { $$('a img').each(function(el) { el.addEvent('focus', function(e) { this.blur(); }); }); });