1. 개별적용
a태그에 onfocus="blur()"를 삽입한다.
2. 전체 적용
body태그 사이에 다음 스크립트를 복사해서 붙여넣는다.
<script language="JavaScript">
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") {
document.body.focus();
}
}
document.onfocusin=bluring;
</script>