2011년 10월 27일 목요일

학습의 순서도

홈짱닷컴
http://www.homejjang.com/
유투브
http://www.youtube.com/user/kuccblog#p/search/13/9_OBjO53X_g
smile virus
http://theyell.x-y.net/tmp/ws_reference.html
http://joke00.tistory.com/category/HTML
웹표준 (도서) - 레이아웃

블루비 - 레이아웃
http://www.blueb.co.kr/blueb/css_html.php?mid=26&p=2
peecky - 세부 레이아웃
http://peecky.tistory.com/category/Web%20Life
방탄웹 (도서)
A List Apart
http://tranbot.net/ALA/

http://hyeonseok.com/

*참고 (표준코딩)
http://www.relation.co.kr/html_board/board_list.php?board_id=system&board=board_system_script

서버관리
seroot.com
http://seroot.com/

리눅스

putty 포터블 한글판
http://gentooboy.tistory.com/tag/Portable

gimp
http://sourceforge.net/projects/gimp-win/files/

도서관 모니터
밝기: 35
명암: 48

디버깅 기능을 너무 과소 평가하고 있다.

디버깅 기능을 너무 과소 평가하고 있다.

원본이 있다면 원본을 통이나 그룹으로 대입해보고, 안풀린다면

css속성인 background-color와 함께 사용하자.

시간을 단축할 수 있다.

2011년 10월 26일 수요일

Select 옵션 선택 시 페이지 이동하거나 새창으로 띄우기

<script Language="JavaScript">
<!--
// 새창으로 띄우기
function popPage(targ,selObj,restore){
window.open(selObj.options[selObj.selectedIndex].value);
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<select name="page2" onChange="popPage('parent', this, 0)">
<option value="http://www.anywiz.co.kr">애니위즈</option>
<option value="http://wizhome.anywiz.co.kr">위즈홈</option>
<option value="http://wizshop.anywiz.co.kr">위즈샵</option>
</select>



출처: http://blog.daum.net/anywiz/9

2011년 10월 25일 화요일

그누보드 input에 자동 커서 맞춰질때

 if (typeof(wr_name) != "undefined")
        wr_name.focus();
    else if (typeof(wr_subject) != "undefined")
        wr_subject.focus();
    else if (typeof(wr_content) != "undefined")
        wr_content.focus();

부분을 삭제하면 된다.

Coding Convention

http://html.nhndesign.com/markup_tools/convention

http://www.mediafire.com/?5cyf90f5nk3umt6

그누보드 홈페이지 접속시 특정 경로 url 이동

index.php의 내용을 모두 지우고 <? header("location: 주소");?>를 입력하면 된다.

2011년 10월 24일 월요일