본문 바로가기

반응형
jquery 배열 형태의 id 값 사용하기 jquery 를 사용할때 id 값이 배열 형태일때 selector id 값을 그대로 사용하면 지정이 안된다 그럴때 역슬래쉬를 두번 감싸서 사용하거나 You have to escape the brackets with \\$("#info\\[text1\\]") 정규식을 사용한 다음과 같은 방법을 이용하면 된다. Try it this way.$('input[id="info[text1]"]') 출처 : http://stackoverflow.com/questions/12973281/how-to-selector-id-textbox-array-using-jquery 더보기
php 5.3 변경사항 preg_replace , preg_replace_callback PHP 5.3. 부터 POSIX Regex 함수( ereg_replace, ereg, eregi_replace, eregi, split, spliti, sql_regcase ) 들이 중요도가 떨어져서 더이상 사용하지 않게될 함수로 되었습니다. (This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged.) PHP 6.0.0 부터 완전히 제거됩니다. http://php.net/manual/en/reference.pcre.pattern.posix.php Function replacements POSIX PCRE ereg_replace() preg_replace() ereg() preg_match.. 더보기
jquery chart jQuery Visualize Plugin jQuery Visualize Plugin is the perfect plugin if you have a table and want to generate a chart out of it. It offers different types of charts such as Bar, Area, Pie & Line charts. Examples Type of Charts: Bar, Area, Pie & Line. Requirements: jQuery, excanvas (included) Browser Support: IE6*, IE7*, IE8*, Firefox 2, Firefox 3.5, Safari 3 and 4, Opera 9. * HTML 5 canvas elem.. 더보기
cms 결제 (Cash Management Service) 효성CMS 서비스개요 이용기관의 정기적,계속적인 자금(물품판매대금,서비스이용요금,후원금,회비 등)수납업무를 자동이체, 가상계좌(무통장입금)등 금융결제 수단을 통하여 서포트하는 통합결제서비스 입니다.즉,업체 혹은 단체,모임에서 고객 혹은 회원으로부터 받을 금액을 인터넷뱅킹정도의 간단한 프로그램 사용만으로도 수납 가능하여 기존의 각종 수단(지로청구,방문수금)보다 업무효율성이 높아질 뿐만 아니라 자금운영이 예측 가능하게 되어 경영개선에 크게 기여할 수 있는 서비스입니다 대상업종 세무사CMS,회계사CMS,후원금CMS,유치원CMS,요양원CMS,임대비CMS,태권도CMS, 랜탈CMS 기타 수금업체CMS https://www.sabinehouse.net/customer/customer_05.html?c_type=not.. 더보기
php setcookie 쿠키 모바일 mobile 에서 종료시간 php 에서 쿠키를 사용하기 위해 setcookie 함수를 사용한다. bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] ) setcookie() defines a cookie to be sent along with the rest 보통 setcookie("쿠키이름","쿠키값"); 이런식으로 expire 부분을 안쓰면 기본 0 값이 적용되어서 브라우져를 닫으면 쿠키가 사라진다. 그런대 당연히 되리라 생각했던 이 방법이 모바일에선 쿠키가 원하는 시점에 사라지지 않았다. php 사이.. 더보기
위지윅 에디터 KindEditor 에서 옵션값 변경 샘플 var editor = null; setTimeout(function () { editor = KindEditor.create('#' + editorId, { resizeType: 1, uploadJson: 'kindeditor/upload_json.ashx', fileManagerJson: 'kindeditor/file_manager_json.ashx', allowPreviewEmoticons: false, allowImageUpload: true, items: [ 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifyce.. 더보기
ie11 frame history 문제 ie11 로 바꾼뒤 프레임으로 이루어진 홈페이지에서 history.back() 이 정확하게 동작하지 않는 버그가 발생했다. 해결 방법을 찾으려고 찾아보았으나 아직 해결책을 찾지 못했다. http://connect.microsoft.com/IE/feedback/details/806548/history-doesnt-work-with-iframe http://connect.microsoft.com/IE/feedback/details/809053/iframe-navigation-no-longer-adding-to-the-browser-history 외국 사람들도 이 문제를 bug 로 의견을 올려두었으니 곧 해결이 되길 바란다. 더보기
홈페이지제작시 특정 input 속성에만 스타일을 지정할때 Styling Texty Inputs Only - input type text 에만 적용할때 -input[type=text] { /* Awesome styling */ } - input type text,url 등 여러가지를 적용할때 -input[type=text], input[type=url], input[type=tel], input[type=number], input[type=color], input[type=email], { /* And that ain't all of them... */ } - input type submit,file 은 제외할때 -input:not([type=submit]):not([type=file]) { /* omg so much cleaner */ } :not 등의 selector 가 ie9 이하는 지원되지 않는다.아.. 더보기
php iframe check 호출되는 페이지가 아이프레임인지 아닌지 확인할 방법이 필요한대 javascript 로는 확인이 가능한대 php 로는 어떻게 해야 하는지 궁리해보니 $_SERVER['HTTP_REFERER'] 이 값을 이용하면 된다. iframe 으로 불려질때 $_SERVER['HTTP_REFERER'] 값이 parent 창에 주소값을 가진다. 이 값이 있다고 iframe 인건 아니지만 $_SERVER['HTTP_REFERER'] 값이 없다면 iframe 이 아닌것은 확인이 된다. 아이프레임으로 호출된게 아니라면 처리하게끔 할때 if($_SERVER['HTTP_REFERER']==""){ // HTTP_REFERER 값이 없다면 직접 주소창에서 접근한것이다. (iframe 아님) header('Location: /pare.. 더보기
14 Website Trends for 2014 As the web continues to mold and evolve, new design trends, techniques, and ideas are constantly surfacing. Analyzing your site’s design, content, and features from time to time can help you to be sure that your site is effective and reaching visitors in the best possible way. As a guide for ensuring your website is up to date, here are 14 website trends for 2014. 2014 Web Trends The trends belo.. 더보기
metaWeblog 를 이용하여 블로그(blog)에 글을 등록해보자 MetaWeblog API 란 The MetaWeblog API is an application programming interface created by software developer Dave Winer that enables weblog entries to be written, edited, and deleted using web services. The API is implemented as an XML-RPC web service with three methods whose names describe their function: metaweblog.newPost(), metaweblog.getPost() and metaweblog.editPost(). These methods take argu.. 더보기
Trouble Maker - '내일은 없어 (Now)' M/V Trouble Maker - '내일은 없어 (Now)' M/V 더보기
2013년도 구매 도서 목록 지금 꿈꾸라 사랑하라 행복하라 저자 황중환 지음 출판사 글로세움 | 2012-08-22 출간 카테고리 자기계발 책소개 ‘지금까지’가 아니라 ‘지금부터’행복하라!해피 바이러스 황중환의... 총 균 쇠 저자 재레드 다이아몬드 지음 출판사 문학사상 | 2005-12-19 출간 카테고리 역사/문화 책소개 인종주의적 설명 방식을 뒤집는, 문명 발전에 관한 새로운 보고서... 아이디어 퍼주는 스푼 Season 2 저자 조현경 지음 출판사 어바웃어북 | 2013-09-02 출간 카테고리 경제/경영 책소개 ◎ 아이디어 스트레스에 지친 두뇌를 위한 링거 한 병 전 세계 ... 미래를 바꾼 아홉 가지 알고리즘 저자 존 맥코믹 지음 출판사 에이콘출판 | 2013-05-31 출간 카테고리 컴퓨터/IT 책소개 오늘날 우리는 궁.. 더보기
Quirks mode Doctype NS6 Mozilla 0.9.5-1.0 IE 8+ Firefox Chrome Safari Opera 7.5+ Netscape 7+ Mozilla 1.0.1+ Konq 3.5+ HTML5 spec IE 7 Opera 7.10 IE 6 Opera 7.0 Mac IE 5 Konq 3.2 None Q Q Q Q Q Q Q HTML 2 Q Q Q Q Q Q Q HTML 3 Q Q Q Q Q Q Q HTML 3.2 Q Q Q Q Q Q Q HTML 4.01 Strict with system identifier S S S A A A A without system identifier S S S A A Q A Transitional with system identifier S S A A A A Q with.. 더보기
X-UA-Compatible Meta Tag X-UA-Compatible Meta Tag Description and Uses: The X-UA-Compatible meta tag allows web authors to choose what version of Internet Explorer the page should be rendered as. It is used by Internet Explorer 8 to specify if a page should be rendered as IE 7 (compatibility view) or IE 8 (standards view). You specify the user agent and version to use in the contents of the tag: "IE=EmulateIE7" The opti.. 더보기
유튜브(youtube) 동영상 레이어 겹칠때 뚤리는 현상 해결방법 or z-index 문제 유튜브 동영상을 화면에 넣을때 레이어가 그 위로 올라가는경우 아래 화면 처럼 보여야 하는대 이렇게 레이어가 뚫려서 보이는경우가 있습니다. 동영상을 넣을때 iframe 형식으로 넣는대 이렇게 넣는 부분에서 &wmode=opaque 를 추가해주면 이런 현상을 막을수 있습니다. 또는 ie11 에서는 이 방법으로 해결되었다. 더보기
KCP 모바일 결제모듈 스마트결제 [ 거래인증을 위한 APM 환경설정 ] ※ APM 버전은 5.0 이상으로 연동 (PHP 5.0 이하는 soap 지원 하지 않음) 5.0 이하 버전으로 연동시 approval_key.js JavaScript 오류가 발생합니다.(스마트폰 연동시) [ 거래인증 통신을 하기 위한 서버 설정 ] ※ Windows_php 의 경우 php_openssl.dll 과 php_soap.dll 설정 Linux_php 의 경우 서버에 configure openssl 과 --enable-soap 설정 ※ 거래인증등록 통신 방법은 SOAP 통신 기술을 기반으로 제공합니다. 모듈 : 메뉴얼 : . . . . . - 계좌이체의 경우 pay_method 값이 메뉴얼이랑 sample 페이지 가 서로 다릅니다. 테스트해본결과 sample.. 더보기
php date_format smarty smarty_modifier_date_format is_numeric 64bit 날짜 문제 php smarty 를 32비트 운영체계에서 사용하다가 64비트로 os를 업그래이드 한후 "20130812174109" 값을 {#$BoardConts.reg_dm|date_format:"%Y.%m.%d"#} 이런식으로 출력했을때 3000년이 넘게 나오는등 이상이 생겼다. 구글링을 통해서 찾아보니 http://www.smarty.net/forums/viewtopic.php?p=8837 에서 By debugging smarty_make_timestamp() function, it turns out that strtotime() of this value is returning something that is_numeric() so it is returned. That means the special mysql.. 더보기
font size px em % 웹에서만 사용하다 모바일을 고려하다 보니 font-size가 문제가 됩니다. 각종 기기마다 해상도가 다르다 보니 컨텐츠의 text 내용이 작아보이거나 너무 크게 보이는등의 문제가 발행합니다. font-size 의 단위를 설정하는 방법은 크게 고정단위(px)와 유동단위(%,em)이 있는대 모바일에서 확대 또는 축소되어 보이려면 유동단위를 사용해 주면 됩니다. 1em = 16px em 계산법은 12(사용하고싶은px) / 16(기준크기px) = 0.75 ex ) body { font-family:'맑은 고딕', malgun gothic, '돋움',dotum, AppleGothic,sans-serif;font-size:1em; } p { font-size:0.875em; } // 14/16 = 0.875 더보기
jQuery Marquee 출처 http://www.jqueryscript.net/demo/Text-Scrolling-Plugin-for-jQuery-Marquee/ jQuery Marquee download Events beforeStarting: Event will be fired on the element before animation starts. finished: Event will be fired on the element after the animation finishes. pause: Fire/trigger this event on the element when you want to pause the animation, for example when you click/hover a link. paused: Event.. 더보기
이미지맵 image map 확인 이미지맵이 걸려있는 경우 영역을 확인하기 힘들때가 있다. 또는 해당 영역을 스타일을 주고 싶을때도 있다. 이런 경우 확인 하는 방법이 있다. 출처 : http://davidlynch.org/projects/maphilight/docs/demo_simple.html 방법 이렇게 하면 mouse over 시 maphilight 에 있는 스타일이 영역에 적용되어 보인다. 더보기
Multi-line Text Overflow Ellipsis 출처 : http://dotdotdot.frebsite.nl/ 글이 길어지면 ... 으로 줄이는대 한 줄 일때는 overflow: hidden; white-space: nowrap; text-overflow: ellipsis; 등을 사용하여 표현이 가능한대 여러 줄 일경우에는 표현이 힘들어 진다. 구굴링으로 찾아보았는대 css 로 처리하는것도 있고 jquery 로 처리하는것도 있는대 jquery 로 처리하는게 가장 간단해 보였다. 사용방법은 jQuery.dotdotdot Advanced cross-browser ellipsis for multiple line content. Demo's and documentation: dotdotdot.frebsite.nl Text only: before: Lorem .. 더보기
모바일에서 fixed style 지원여부 position Selector iOS Android Opera BlackBerry Nokia UC NetFront Dolphin One Tizen IE Firefox 5 6 2 3 4 Chr Mini Mob 12 Mob 14 6 7 PB 10 Xpress MeeGo Anna Belle 9 10 position: other valuesstatic, relative, and absolute Yes Yes Yes Yes Yes Yes Yes WebKit browsers have a minor bug; see page. position: fixed basic supportDoes the browser try to create a fixed layer at all, or is it just an absolute.. 더보기
Opera Mobile Emulator http://www.opera.com/ko/developer/mobile-emulator Opera Mobile Emulator Do your mobile development straight from your desktop, and pair it with Opera Dragonfly for advanced debugging. Opera Mobile Emulator 12.1 for Windows Opera Mobile Emulator 12.1 for Mac Opera Mobile Emulator 12.1 for Linux Mobile debugging on your desktop 더보기
PHP 5.3 이상에서 Deprecated 에러 발생시 처리 PHP Deprecated: Function [함수명] is deprecated 해당 에러 문구는 PHP 6.0부터는 해당 함수들이 제거될 예정이니 개발시 더 이상 사용하지 말 것을 권고하는 메시지입니다. 경고 메시지이므로 사용상에 문제는 없으며, php.ini 파일을 수정하여 해당 문구가 발생하지 않도록 설정할 수 있습니다. # vi php.ini 519 ; Production Value: E_ALL & ~E_DEPRECATED 520 ; http://php.net/error-reporting 521 error_reporting = E_ALL & ~E_NOTICE 521번째 줄의 error_reporting = E_ALL & ~E_NOTICE 항목을 error_reporting = "E_ALL & ~E.. 더보기
HTML5를 이용하여 위치/좌표정보(GPS)를 사용하기 HTML5에서는 GPS 수신기기를 탑재한 스마트폰의 위치정보를 javascript를 통해 쉽게 이용할 수 있도록 하고 있습니다. 단순한 2개의 실수값(위도, 경도)이지만 위치정보는 매우 민감한 개인정보 중 하나이므로 웹페이지에서 이 기능을 사용할경우 브라우저는 사용자에게 위치정보 제공 여부를 선택할 수 있습니다. HTML5 Geolocation은 IE9, 파이어폭스, 크롬 등 대부분의 브라우저에서 지원하고 있습니다. 1. 위치정보 가져오기 -위치정보를 가져오기 위해서는 getCurrentPosition() 함수를 사용하면 됩니다. 2. 에러 처리 -위의 예에서 getCurrentPosition의 첫 번째 매개변수로 showPosition가 들어가 있습니다. 이 함수의 두 번째 매개변수는 에러 처리를 위한.. 더보기
웹관련 유용한 정보 - How to Send a Text Message from Your Mobile Website (모바일 기기에서 링크 클릭해서 sms 보내는 방법 정리) http://answers.oreilly.com/topic/2166-how-to-send-a-text-message-from-your-mobile-website/ - JQuery Mobile for Absolute Beginners http://www.onlywebpro.com/2012/06/29/jquery-mobile-for-absolute-beginners-part-1/ http://www.onlywebpro.com/2012/06/29/jquery-mobile-for-absolute-beginners-part-2/ http://www.onlywe.. 더보기
파일찾기 찾아보기 버튼을 이미지로 파일찾기 버튼을 이미지로 두개일때는 아래처럼 추가 출처는 잊어버림... 더보기
javascript 이용 flash param 값 변경 Replace value of object param with Greasemonkey $('#flashc param[name="allowFullScreen"]').val ("true"); var jNewFlash = $('#flashc').clone (true); $('#flashc').replaceWith (jNewFlash) 출처 http://stackoverflow.com/questions/4473739/replace-value-of-object-param-with-greasemonkey 더보기
모바일 폰트 고정 모바일 디바이스에서 폰트가 크기가 다르게 보이는경우가 있다. 다음과 같은 스타일을 사용하면 된다. * { -webkit-text-size-adjust:none; -webkit-text-size-adjust - auto | none | N% (default auto) } 또는 해당하는 부분에만 위의 스타일을 적용 출처 : http://blog.naver.com/PostView.nhn?blogId=redflaghk&logNo=40156122631 더보기

반응형