FrontEnd/Web(52)
-
[javascript] location.href 새창 열기
잘 되네 function goUrl(url) { var openNewWindow = window.open("about:blank"); var Reg = /^(http|https)/i var _Http = Reg.test(url); url = (!_Http)?"http://"+url:url; openNewWindow.location.href = url; }
2015.07.30 -
[explorer] input x버튼 clear버튼 제거
input에 괜히 쓸때없이 clear이 적용되어 있다..포커스 상태에서 입력한 text를 clear할 수 있는 x버튼이 표시 되는데 이를 제거 하기 위해선css에 input[type=text]::-ms-clear {display: none;} 이것만 써 주자. 그럼 안보인다.
2015.07.30 -
[PHPEXCEL] phpexcel 사용법
잘 되네... 비밀번호도 잘 먹고... 대충 거시기 해불자.
2015.07.27 -
[javascript] HTML TITLE 변경하기
굳이 변경 할 때가 있나 싶다..했는데 있네.. document.title = "변경 할 타이틀";
2015.07.08 -
table tr display none / block 시 크롬 깨짐현상
table의 tr태그에 display을 none & block 을 주어야 할 때 크롬에선 block시 테이블이 깨진다. tr을 다시 보여지게 할 때에는 Jquery - $("#trTagId").css("display", "table-row"); js - document.getElementById('trTagId').style.display = 'table-row"';
2015.07.07 -
div 애니메이션
$('#example').animate({ 'marginLeft' : "+=50px" }); $('#example').animate({ 'marginLeft' : "-=50px" }); This is going to move 출처 : http://www.electrictoolbox.com/jquery-relative-move-div-left-right/
2015.05.29