﻿// Name: Blur Anchors
// Language: JavaScript
// Author: Travis Beckham Ś squidfingers.com
// Description: Remove anchor outlines from all links in the document
// zamias a wpisałem li--------------------------------------
function bluranchors(){
if(document.getElementsByTagName) {
var li = document.getElementsByTagName("li");
//collect all anchors A
for(var i = 0; i < li.length; i++){
// mouse onfocus, blur anchors
li[i].onfocus = function(){this.blur();};
}
}
}
window.onload = bluranchors; 
