본문 바로가기

반응형

Story

Top 10 JQuery Tooltip Plugins! 1. Tooltipster This jQuery plugin can be used to create semantic and modern tooltips using CSS. 2. Toolbar.js This one has the capability to produce tooltip styled toolbards quickly. It can be used for websites and web applications. 3. Grumble js This plugin gives you special tooltips without the regular limitations. 4. Progression.js If tips about an active form field is what you are looking fo.. 더보기
구글차트 google chart 사용시 값이 0 인경우 표시하기 위와 같이 구글챠트를 이용할때 legend 에 값이 0 인것은 나타나지 않는 현상이 있었다. 0 인것도 보여주고 싶을땐 // Set chart options var options = {'title':'How Much Pizza I Ate Last Night', 'width':400, 'height':300, 'sliceVisibilityThreshold':0}; sliceVisibilityThreshold:0 이 항목을 추가해 주면 0인값도 보여지게 된다. 혹시나 ie8 버전에서 안나오면 어떻하나 했는대 javascript 문법만 잘 맞춰주면 정상으로 나온다. 예를들면 addRows 나 options 등에서 배열형태인대 마지막에 ,를 남겨둔다거나 하면 ie8이나 ie9에서 정상으로 보이지 않는다. 더보기
jQuery Plugin For Auto Resizing iFrame - iFrame Resizer 아이프레임 리사이즈 아이프레임으로 컨텐츠를 관리할때 아이프레임 사이즈가 수시로 변하기때문에 resize를 해주어야 하는대 구글링을 통해서 쓸만한 jQuery Plugin 을 찾았다. 부모창에는 아이프레임에 들어가는 페이지에는 하단부분에 을 넣어준다. 출처 : http://www.jqueryscript.net/layout/jQuery-Plugin-For-Auto-Resizing-iFrame-iFrame-Resizer.html 더보기
Example of MySQL SUBSTRING_INDEX() Example of MySQL SUBSTRING_INDEX() 특정 구분자로 문자열을 분리해 내야할때 필요하다. mysql> SELECT ip, SUBSTRING_INDEX(ip,'.',1) AS part1, SUBSTRING_INDEX(SUBSTRING_INDEX(ip,'.',2),'.',-1) AS part2, SUBSTRING_INDEX(SUBSTRING_INDEX(ip,'.',-2),'.',1) AS part3, SUBSTRING_INDEX(ip,'.',-1) AS part4 FROM log_file; +-----------------+-------+-------+-------+-------+ | ip | part1 | part2 | part3 | part4 | +-----------------+.. 더보기
mdb 내용을 mysql 로 바꾸는 프로그램 구글링을 하다가 아래 프로그램을 찾았다. 네이버 백신으로는 정상으로 나와서 설치해서 사용해 보았다. http://www.bullzip.com/products/a2m/info.php 더보기
flash 와 레이어가 겹쳐있을때 레이어가 flash 밑으로 숨는경우 해결방법 wmode 값을 transparent 로 지정해준다. 더보기
SPAW Editor ie11 에서 동작하지 않는 문제점 SPAW Editor ie11 에서 에디터가 나타나지 않고 textarea 로 노출이된다. 이 문제를 해결하고자 구글링을 하다가 http://www.ziplineinteractive.com/blog/spaw-editor-not-loading-content-in-ie9-bug-fix/ 이 문서를 찾았는대 아래 댓글중에서 아래 내용을 찾을수있었다. 이 util.class.php 파일을 /class 에 덮어씌워주면 해결이 된다. 출처 : http://geigenberger.wordpress.com/2013/11/01/spaw-2-von-solmetra-internet-explorer-11-fix/ for IE, I found the solution from http://geigenberger.wordpress.. 더보기
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.. 더보기

반응형