onfocus=" blur() "
onfocus=" blur() "
Out of context: Reply #6
- Started
- Last post
- 8 Responses
- ********0
well, probably it can be done via DOM.
getElementsByTagName("a");then buld an array and do this:
for(i=0; i<links.length; i++) {
links[i].onfocus = "blur()";
}alltough, it did not worked for me, so its just an idea.