'JAVASCRIPT'에 해당되는 글 3건

  1. 2009.06.22 Tistory 에서 syntaxhighlighter 를 사용 하는 방법~*
  2. 2008.07.24 [추천 Site]ajax rain 2
  3. 2008.07.24 [JavaScript TIP]Client 해상도 1
JAVASCRIPT2009. 6. 22. 18:02
좋은 글을 일고 내 티스토리에 반영 하여 본다
sample
private String userId;
private String userNm;

public String getUserId(){
 return userId;
}

참조 URL : http://gyuha.tistory.com/193

Posted by lahuman
JAVASCRIPT2008. 7. 24. 13:09
ajax simple 관련 library들이 정리 되어 있다.

필요한게 있으면 찾아서 쓰자.


http://www.ajaxrain.com/index.php

Posted by lahuman
JAVASCRIPT2008. 7. 24. 09:42

스크립트에서

해상도를 구해올수 있다..

그냥 브라우져 사이즈 인줄 알았는데 해상도를 구해온다..


<script language="Javascript">
     document.write(screen.width + "*" + screen.height)

</script>


Posted by lahuman