본문 바로가기

전체보기

(119)
170314 https 로 url redirect 시키기 http:// 로 들어왔을 때 https:// 로 리다이렉트 시키기 var url1 = window.location;var url2 = 'http://pmakesperfect.tistory.com/';if (url1 == url2) window.location = 'https://pmakesperfect.tistory.com/';
170307 티스토리 카테고리 다른글 css 카테고리 다른글 기능을 안쓰다가 쓰려고 하니 css도 찾아서 수정 div.another_category h4 a {color:#000 !important;} /* 카테고리의 다른글 제목 중 카테고리명 부분 */div.another_category h4 {color:#000 !important;} /* 카테고리의 다른글 제목 중 뒷부분 */div.another_category_color_gray {border-color:#ffe7b0 !important;}/* 카테고리의 다른글 테두리 */div.another_category_color_gray h4 {border-color:#000 !important;}/* 카테고리의 다른글 제목과 글목록 사이 */div.another_category table th a..
170227 html table 정리 tabletheadtbodytr, td/thdl, dt/dd ++ colgroupcol style
170112 javascript로 페이지 이동 location.herf = 'page.asp';
170111 jQuery css writing 할 때마다 헷갈려서 구글링하는데 정리합시다구글링해도 이것저것 다 들여다봐야 나오니까 짜증 $('#div').css({'attr' : 'value'});$('#div').css('attr' , 'value'); 1. 정해진 값을 사용할 때 $('#div').css('height', '100px'); 2. 그때 그때 계산한 값을 사용할 때$('#div').css({'height' : var1 + 'px'});$('#div').css('height', var1 + 'px'); 3. attribute writingcss('height','100px');css('width','100px');css('margin-top','100px');css('margin-left','100px');css('min-width',..
170109 jquery input type text focus $("input[type='text']")[0].focus();
161230 jQuery hover, unhover (게시판 글목록 마우스 올릴때 색 바꾸기) 오 hover의 반대가 뭐가 있나 엄청 찾았는데 w3schools.com 에 들어가니 딱 기능이 있다. hover 로 function 하고 그 밑에 function 하나 더 붙여주면 반대일 때 효과가 난다. $(document).ready(function() {$('.mboc').hover(function() {$(this).css("background-color","#f7f7f7");}, function() {$(this).css("background-color","#ffffff");});}); 참고 http://www.w3schools.com/jquery/event_hover.asp
161229 jQuery td 내부값 채우기 mbo 라는 id를 가진 table의 td에 해당 근데 익스플로러에서는 안되네
161124 jQuery 현재 출력 화면에 있는 첫번째 텍스트 박스에 포커스 $(document).ready(function() {$('input:text')[0].focus();}); 그냥 text 빼고 input 이라고만 하면 텍스트 박스 이전에 있는 다른 input 친구가 선택된다.$(document).ready(function() {$('input')[0].focus();});