스마트 에디터2에서 이미지 삽입 후 정렬이나 크기 조정 옵션을 설정 하는 방법 GitHub : https://github.com/naver/smarteditor2/issues/36 를 참고하여 적용 할것.
text ... var data = $('li.someclass').metadata(); if ( data.some && data.some == 'data' ) alert('It Worked!'); @Reference http://phpschool.com/gnuboard4/bbs/board.php?bo_table=forum&wr_id=146638&page=3 http://stackoverflow.com/questions/4189036/custom-data-in-xhtml-1-0-strict
요소객체 DOM 속성을 반환,설정 elem.checkedtrue (Boolean) Will change with checkbox state$(elem).prop("checked")true (Boolean) Will change with checkbox stateelem.getAttribute("checked")"checked" (String) Initial state of the checkbox; does not change$(elem).attr("checked")(1.6)"checked" (String) Initial state of the checkbox; does not change$(elem).attr("checked")(1.6.1+)"checked" (String) Will change with..
바코드 폰트, 웹폰트 @font-face{ font-family:C39TWttf; src:url(C39TW.TTF);} @font-face{ font-family:C39TWeot; src:url(C39TW.eot);} .bcode{font-family:C39TWttf,C39TWeot;} 사용예시 기본 : 바의 넓이 1px, 굵은바의 넓이 2px, 색상 검정 barcode(문자열, 바코드의 세로길이); // 필수 예시1 barcode(문자열, 바코드의 세로길이, 바의 넓이, 굵은바의 넓이); // 예시 2 barcode(문자열, 바코드의 세로길이, 바의 넓이, 굵은바의 넓이, 스페이스의 넓이, 굵은 스페이스의 넓이) // 예시 3 barcode(문자열, 바코드의 세로길이, 바의 넓이, 굵은바의 넓이, 스페..
즐겨찾기에 다음을 추가 MRI : javascript:function loadScript(scriptURL) { var scriptElem = document.createElement('SCRIPT'); scriptElem.setAttribute('language', 'JavaScript'); scriptElem.setAttribute('src', scriptURL); document.body.appendChild(scriptElem);}loadScript('http://westciv.com/mri/theMRI.js'); XRAY : javascript:function loadScript(scriptURL) { var scriptElem = document.createElement('SCRIPT'); s..
선택된 요소에 jQuery 메서드를 한꺼번에 연결해서 적용되게 한다. 체인 적용전 $("#id").val("Click me"); $("#id").addClass("cssclass"); $("#id").css({"width":"300px"}); $("#id").click(function(e){ alert('hello'); }) 체인 적용후 (들여쓰기와 줄바꿈을 이용할 수 있다.) $("#id").val("Click me").addClass("cssclass").css({"width":"300px"}) .click(function(e){ alert('hello'); })