본문 바로가기

퍼블리싱/jQeury, Javascript

IE 8, 9버전에서 placeholder 적용시키기 개인적으로 참 유용하다고 생각하는 속성이 바로 placeholder다. 이전에는 input에 value값을 주고, 스크립트에서 focus시 value값을 ""으로 처리했던 것을 placeholder로 간편하게 대체할 수 있으니 얼마나 편리한가. 그런데 문제는 placeholder는 IE10부터 먹히는 속성이라는 것이다. 그래서 찾은 것이 IE8, IE9에서도 먹히도록 만든 플러그인이다 ㅎㅎ 저장하고 제이쿼리 라이브러리 다음에 추가만 하면 됨 ㅎㅎ 더보기
툴팁 띄우기 평소 틈틈히 해놓은 것들 정리차원에서 올림 jsfiddle http://jsfiddle.net/ichbintaeeun/6v2fakc6/3/ HTML The art of love...is largely the art of persistence.The art of love...is largely the art of persistence. Albert Ellis(앨버트 엘리스) The art of love...is largely the art of persistence. The art of love...is largely the art of persistence. Albert Ellis(앨버트 엘리스)는 1900년도에 태어나... CSS * {margin:0;padding:0;font-size: 12px;} .. 더보기
스크롤따라 흐르는 TOP버튼, 버튼클릭하면 페이지최상단으로 이동하기 웹사이트에서 많이 쓰는 것을 정리해서 올려놈 jsfiddle http://jsfiddle.net/ichbintaeeun/ap4252uv/3/ HTML TOP CSS * { margin:0; padding:0; font-size: 12px; } div { height:1500px; background: #000; } a.go-to-top{ position:absolute; bottom:100px; right:100px; z-index:99; display: inline-block; width:30px; height:30px; border-radius: 15px; line-height:30px; text-align:center; text-decoration:none; background: #ccc; opac.. 더보기
userAgent 식별하기 // 모바일일 경우 mobile.css 파일 연결시키기 var isMobile = false; if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) isMobile = true; $(document).ready(function() { if (isMobile) $('link[type="text/css"]').attr('href', '/mobile.css'); }); 더보기
브라우저체크 // ie 일경우 if(navigator.userAgent.toLowerCase().indexOf("msie") == -1){ code... }// safari 일경우if(navigator.userAgent.toLowerCase().indexOf("safari") > 0){ code... }※ $(browser.msie) 와 같은 코드는 jquery 1.9.x 이상버전부터 없어짐 navigator.userAgent를 사용 더보기