onfocus=" blur() "
- Started
- Last post
- 8 Responses
- unknown
Why do so few people use it on their sites? I just hate those blocks when a link is clicked on...especially in image maps!
so once more:
Paste this damn lil piece of code in there:
onfocus=" blur() "
- unknown0
in each [a] tag that is...
- schjetne0
Is it possible to define this in a global css file or javascript or something?
It's so darn boring inserting it in all links.
- unknown0
yes that would be possible via some sweet JS.
You can also batch it into all [A]-tags in DW.
- Xentic0
It won't work in css...
- ********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.
- unknown0
theres a DW extension (linkScrubber) that does it with the click of a button.
Its skill.
- thosethat0
i for one will be using this from now on...
i thank you...