javascript로 margin 값 변경 document.id.style.margin = '10px 10px 10px 10px'; 처럼 변경 하거나 document,id.style.marginLeft = '10px'; document,id.style.marginTop = '10px'; document,id.style.marginRight = '10px'; document,id.style.marginBottom = '10px'; 처럼 변경하면 된다. 스킬(skills)/자바스크립트(Javascript) 2014.04.14
JAVA로 현재 접속한 브라우져 정보 확인 방법 다음의 방법으로 접속한 브라우져의 각종 정보를 확인 할 수 있다.String userAgent = request.getHeader("User-Agent"); 스킬(skills)/자바(Java) 2014.04.09
com.sun.mail.smtp.SMTPTransport.close 의 lock 현상 해결 방법 java mail 을 이용하여 메일 발송 시 com.sun.mail.smtp.SMTPTransport.close 구문에서 lock 이 걸려 thread hang이 발생하는 경우가 생기는 경우가 있다. 이럴 경우에는 mime 생성 시 timeout 값을 지정 해 주면 된다.timeout 값이 지정되어 있지 않으면 다음과 같이 무한정 대기 상태에 빠지게 된다. "webtob1-hth0(localhost:9900)-w06 [container1-26]" prio=1 tid=0x087e1288 nid=0x1ea0 runnable [0x5d1fc000..0x5d1fcea0]at java.net.SocketInputStream.socketRead0(Native Method)at java.net.SocketInputS.. 스킬(skills)/자바(Java) 2014.04.03
div 세로로 가운데 정렬 margin-left:auto 와 margin-right:auto 를 주거나 다음과 하면 된다. margin: 0 auto 사용 예) 내용 만약 위의 방법으로 정렬이 잘 안된다면(인터넷 익스플로러에서 잘 작동이 안됨) 로 전체 화면을 한번 감싸고 그 안에서 내용을 수정하면 된다. 내용 처럼 작성을 하면 모든 브라우져에서 잘 작동된다. 스킬(skills)/HTML 2014.03.19
HTML 코드 정리 사이트 http://tools.arantius.com/tabifier난장판인 HTML 코드 정리를 해 주는 사이트 이다. 스킬(skills)/HTML 2014.03.19
jquery readonly 바꾸기 버전 1.9 이하$('#ID').attr('readonly', true); 버전 1.9 이상$('#ID').prop('readonly', true); 스킬(skills)/제이쿼리(jQuery) 2014.03.04
if 문에 or 도는 and 조건 주기 jstl을 이용하여 if문을 사용할 경우or 이나 and 문을 다음과 같이 쓸 수 있다. and... or... 스킬(skills)/JSTL(Jsp Standard Tag Library) 2014.02.27
jquery로 background color 변경시 다음의 구문처럼 변경할 수 있다..css('backgroundColor', '#99cc00'); 스킬(skills)/제이쿼리(jQuery) 2014.02.25
jQuery로 창 크기 알아내기 보통 $(document).width()로 화면 전체 크기를 알아낼 수가 있고 $('body').innerWidth()로 스크롤 바를 제외한 영역의 크기를 구해낼 수가 있다. 스킬(skills)/제이쿼리(jQuery) 2014.02.21
JSTL 사용시 select 태그에서 forEach로 내용 뽑아올 때 selected 처리하기 제목 그대로select 태그 안에서 스킬(skills)/JSTL(Jsp Standard Tag Library) 2014.02.20