|
|
|
09-08-24
|
조회 1,407
|
|
|
|
09-08-24
|
조회 1,466
|
|
|
|
09-08-24
|
조회 1,599
|
|
|
|
09-08-24
|
조회 1,950
|
|
|
|
09-08-24
|
조회 3,838
|
|
|
|
09-08-24
|
조회 1,386
|
|
|
|
09-08-24
|
조회 1,610
|
|
|
|
09-08-24
|
조회 2,743
|
|
|
|
09-08-24
|
조회 1,416
|
|
|
|
09-08-24
|
조회 1,234
|
|
|
|
09-08-24
|
조회 2,998
|
|
|
|
09-08-24
|
조회 1,298
|
|
|
|
09-08-23
|
조회 1,560
|
|
|
똥싼너구리
|
09-08-23
|
조회 1,796
|
|
|
|
09-08-23
|
조회 1,890
|
|
|
|
09-08-23
|
조회 1,842
|
|
|
|
09-08-23
|
조회 1,743
|
|
|
똥싼너구리
|
09-08-23
|
조회 2,717
|
|
|
|
09-08-23
|
조회 1,481
|
|
|
|
09-08-23
|
조회 1,359
|
댓글 5개
=======================================================================================
<DIV id=curWidget>
<TABLE class=skinTable align=center>
<TBODY>
<TR>
<TD id=wiBoxC --><!--div id="widgetframe"></div--><IFRAME id=widgetframe name=widgetframe marginWidth=0 marginHeight=0 src="http://widgetprovider.daum.net/ifr?nocache=&widgetId=399&mywidgetId=&containerType=&containerServiceid=&containerUserid=&containerAuthkey=&containerId=&containerLink=&containerTitle=&returnTarget=self&url=http%3A%2F%2Fwidgetcfs1.daum.net%2Fxml%2F13%2Fwidget%2F2009%2F06%2F01%2F13%2F17%2F4a235670c5907.xml&userPrefsSize=4&height=220&width=166&up_userChannel=powerfm&up_userAutoPlay=true&up_userVolume=60&up_userSkin=black" frameBorder=0 width=166 scrolling=no height=220></IFRAME><!--/td>
<td id="wiBoxT5"></td>
</tr>
</table--><!-- 위젯 미리보기 화면 -->
<DIV></DIV>
==================================================================================
뭐 그누 팁은 아니지만
그리고 뭐 알만한 분들은 다 알만한 간단한 팁이지만 -0-
이미지 혹은 텍스트 등으로 링크를 걸어서
클릭시 생기는 점선, 전 눈에 거슬려서 무조건 없애고 보자 주의입니다
물론 나름 필요한 경우도 있어보이긴 하나
간단 합니다
링크 관련 구문에
onFocus="this.blur()" 요거 만 넣어주면 됩니당
해당 페이지의 모든 링크에 대해 적용 시키고 싶으시다면
<script>
function allblur() {
for (i = 0; i < document.links.length; i++) {
var obj = document.links[i];
if(obj.addEventListener) obj.addEventListener("focus", oneblur, false);
else if(obj.attachEvent) obj.attachEvent("onfocus", oneblur);
}
}
function oneblur(e) {
var evt = e ? e : window.event;
if(evt.target) evt.target.blur();
else if(evt.srcElement) evt.srcElement.blur();
}
</script>
<body onLoad="allblur()">
<a href=# >link</a>
또는
style.css에 아래 한줄 추가하면 끝......
a {selector-dummy: expression(this.hideFocus=true);}