내 폴더/스크랩
a, img 링크 포커스 없애기.
ArtWorker
2008. 2. 20. 14:26
###### 모든 링크 포커스 없애기. ######
<script>
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG")
document.body.focus();
}
document.onfocusin=bluring;
</script>