<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Peng&#039;s Happy Life~!</title>
		<link>http://pengs.pe.kr/</link>
		<description>행복한 프로그래머
행복한 지우 아빠</description>
		<language>ko</language>
		<pubDate>Wed, 01 Feb 2012 13:25:00 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<managingEditor>Peng&#039;s</managingEditor>
		<image>
		<title>Peng&#039;s Happy Life~!</title>
		<url><![CDATA[http://cfile23.uf.tistory.com/image/113051424EE03D4545EC7E]]></url>
		<link>http://pengs.pe.kr/</link>
		<description>행복한 프로그래머
행복한 지우 아빠</description>
		</image>
		<item>
			<title>JSON 개요</title>
			<link>http://pengs.pe.kr/305</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;b&gt;JSON&lt;/b&gt;&amp;nbsp;(JavaScript Object Notation)은 경량의 DATA-교환 형식이다. 이 형식은 사람이 읽고 쓰기에 용이하며, 기계가 분석하고 생성함에도 용이하다.&amp;nbsp;&lt;a href=&quot;http://www.crockford.com/javascript&quot; style=&quot;text-decoration: none; color: navy; &quot;&gt;JavaScript Programming Language&lt;/a&gt;,&amp;nbsp;&lt;a href=&quot;http://www.ecma-international.org/publications/files/ecma-st/ECMA-262.pdf&quot; style=&quot;text-decoration: none; color: navy; &quot;&gt;Standard ECMA-262 3rd Edition - December 1999&lt;/a&gt;의 일부에 토대를 두고 있다. JSON은 완벽하게 언어로 부터 독립적이지만 C-family 언어 - C, C++, C#, Java, JavaScript, Perl, Python 그외 다수 - 의 프로그래머들에게 친숙한 관습을 사용하는 텍스트 형식이다. 이러한 속성들이 JSON을 이상적인 DATA-교환 언어로 만들고 있다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;JSON은 두개의 구조를 기본으로 두고 있다:&lt;/span&gt;&lt;/p&gt;
&lt;ul style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;name/value 형태의 쌍으로 collection 타입. 다양한 언어들에서, 이는&amp;nbsp;&lt;i&gt;object&lt;/i&gt;, record, struct(구조체), dictionary, hash table, 키가 있는 list, 또는 연상배열로서 실현 되었다.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;값들의 순서화된 리스트. 대부분의 언어들에서, 이는&amp;nbsp;&lt;i&gt;array&lt;/i&gt;, vector, list, 또는 sequence로서 실현 되었다.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;이러한 것들은 보편적인 DATA 구조이다. 사실상 모든 현대의 프로그래밍 언어들은 어떠한 형태로든 이것들을 지원한다. 프로그래밍 언어들을 이용하여 호환성 있는 DATA 형식이 이러한 구조들을 근간에 두고 있는 것은 당연하다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;JSON 에서, 이러한 형식들을 가져간다:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;i&gt;object&lt;/i&gt;는 name/value 쌍들의 비순서화된 SET이다. object는&amp;nbsp;&lt;tt&gt;{&lt;/tt&gt;&amp;nbsp;&lt;small&gt;(좌 중괄호)&lt;/small&gt;로 시작하고&amp;nbsp;&lt;tt&gt;}&lt;/tt&gt;&amp;nbsp;&lt;small&gt;(우 중괄호)&lt;/small&gt;로 끝내어 표현한다. 각 name 뒤에&amp;nbsp;&lt;tt&gt;:&lt;/tt&gt;&amp;nbsp;&lt;small&gt;(colon)&lt;/small&gt;을 붙이고&amp;nbsp;&lt;tt&gt;,&lt;/tt&gt;&amp;nbsp;&lt;small&gt;(comma)&lt;/small&gt;로 name/value 쌍들 간을 구분한다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;http://www.json.org/object.gif&quot; width=&quot;598&quot; height=&quot;113&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;i&gt;array&lt;/i&gt;은 값들의 순서화된 collection 이다. array는&amp;nbsp;&lt;tt&gt;[&lt;/tt&gt;&amp;nbsp;&lt;small&gt;(left bracket)&lt;/small&gt;로 시작해서&amp;nbsp;&lt;tt&gt;]&lt;/tt&gt;&amp;nbsp;&lt;small&gt;(right bracket)&lt;/small&gt;로 끝내어 표현한다.&amp;nbsp;&lt;tt&gt;,&lt;/tt&gt;&amp;nbsp;&lt;small&gt;(comma)&lt;/small&gt;로 array의 값들을 구분한다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;http://www.json.org/array.gif&quot; width=&quot;598&quot; height=&quot;113&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;i&gt;value&lt;/i&gt;는 큰따옴표안에&amp;nbsp;&lt;i&gt;string&lt;/i&gt;,&amp;nbsp;&lt;i&gt;number&lt;/i&gt;&amp;nbsp;,&lt;tt&gt;true&lt;/tt&gt;&amp;nbsp;,&lt;tt&gt;false&lt;/tt&gt;&amp;nbsp;,&amp;nbsp;&lt;tt&gt;null&lt;/tt&gt;,&amp;nbsp;&lt;i&gt;object&lt;/i&gt;&amp;nbsp;,&lt;i&gt;array&lt;/i&gt;이 올수 있다. 이러한 구조들을 포함한다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;http://www.json.org/value.gif&quot; width=&quot;598&quot; height=&quot;278&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;i&gt;string&lt;/i&gt;은 큰따옴표안에 둘러 싸인 zero 이상 Unicode 문자들의 조합이며, 쌍다옴표안에 감싸지며,backslash escape가 적용된다. 하나의 문자(character)도 하나의 문자열(character string)로서 표현된다.&amp;nbsp;&lt;i&gt;string&lt;/i&gt;은 C 또는 Java 문자열 처럼 매우 많이 비슷하다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;http://www.json.org/string.gif&quot; width=&quot;598&quot; height=&quot;413&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;i&gt;number&lt;/i&gt;는 8진수와 16진수 형식을 사용하지 않는것을 제외하면 C와 Java number 처럼 매우 많이 비슷하다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;http://www.json.org/number.gif&quot; height=&quot;266&quot; width=&quot;598&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: 나눔고딕; letter-spacing: normal; line-height: normal; font-size: medium; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;토근들의 어떤 쌍 사이에 공백을 삽입할수 있다. 드물게 encode된 세부 항목을 제외하면, 이렇게 설명된 JSON의 형식은 완벽하게 그 언어를 설명한다.&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-305-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-305-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=25173429&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/305&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>JSON</category>
			<category>JSON</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/305</guid>
			<comments>http://pengs.pe.kr/305#entry305comment</comments>
			<pubDate>Wed, 01 Feb 2012 13:24:35 +0900</pubDate>
		</item>
		<item>
			<title>[ 델파이 ] TImage 에 Jpg 이미지 파일 불러오기</title>
			<link>http://pengs.pe.kr/304</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: transparent;&quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;델파이 표준 컴퍼넌트인 TImge 에 바로 Jpg 이미지 파일을 불러올수는 없지만&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: transparent;&quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;Jpeg 유닛을 사용하면 가능하다.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: transparent;&quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;Uses 절에 Jpeg 추가&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;font face=&quot;Courier New&quot; style=&quot;font-family: &#039;Courier New&#039;; line-height: 17px; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;procedure&lt;/span&gt;&lt;/font&gt;&lt;code&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;TForm1.Button1Click(Sender: TObject);&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;Var&lt;/span&gt;&lt;br /&gt;
&lt;font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;　jpgImage&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;:&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;TJpegImage;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;begin&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;// JPEG 이미지 오브젝트 인스턴스화&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;jpgImage&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;:= TJpegImage.Create ;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;// Jpeg 이미지 불러오기&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;jpgImage&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;.LoadFromFile(이미지경로) ;&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;// Image1에 어사인&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;Image1.Picture.Assign(&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;jpgImage&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;);&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;font&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;// 오브젝트 파기&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;　&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;jpgImage&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;.Free;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;end;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;이미지 경로에 서버URL 은 안먹히네요 -_- &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;이건 또 무슨 방법이 있는것일까 ㅠㅠ&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;/font&gt;&lt;/span&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-304-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-304-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=25166720&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/304&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Delphi</category>
			<category>jpg</category>
			<category>timage</category>
			<category>델파이</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/304</guid>
			<comments>http://pengs.pe.kr/304#entry304comment</comments>
			<pubDate>Wed, 01 Feb 2012 10:54:36 +0900</pubDate>
		</item>
		<item>
			<title>MSSQL 스키마 변경</title>
			<link>http://pengs.pe.kr/303</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
alter schema dbo transfer user.table&lt;br /&gt;
&lt;br /&gt;&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-303-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-303-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24686686&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/303&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>DataBase</category>
			<category>스키마 변경</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/303</guid>
			<comments>http://pengs.pe.kr/303#entry303comment</comments>
			<pubDate>Tue, 17 Jan 2012 15:37:20 +0900</pubDate>
		</item>
		<item>
			<title>Jquery select .change() 사용하기</title>
			<link>http://pengs.pe.kr/302</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;ul class=&quot;signatures&quot; style=&quot;padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; margin-top: 1em; margin-right: 19px; margin-bottom: 1.5em; margin-left: 19px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 10px; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(250, 250, 250); list-style-type: none; list-style-position: initial; list-style-image: initial; color: rgb(34, 34, 34); font-family: &#039;Trebuchet MS&#039;, Verdana, Helvetica, Arial, sans-serif; line-height: 14px; &quot;&gt;
&lt;li class=&quot;signature&quot; id=&quot;change-handlereventObject&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.1em; vertical-align: baseline; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; &quot;&gt;&lt;h4 class=&quot;name&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 2px; padding-left: 0px; margin-top: 0.2em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.4em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; letter-spacing: 0px; border-bottom-style: solid; border-bottom-color: rgb(177, 177, 177); color: rgb(68, 68, 68); &quot;&gt;.change( handler(eventObject) )&lt;/h4&gt;&lt;p class=&quot;arguement&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.2em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; background-position: initial initial; background-repeat: initial initial; &quot;&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 5px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; &quot;&gt;handler(eventObject)&lt;/strong&gt;A function to execute each time the event is triggered.&lt;/p&gt;
&lt;/li&gt;&lt;li class=&quot;signature&quot; id=&quot;change-eventData-handlereventObject&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.1em; vertical-align: baseline; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; &quot;&gt;&lt;h4 class=&quot;name&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 2px; padding-left: 0px; margin-top: 0.2em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.4em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; letter-spacing: 0px; border-bottom-style: solid; border-bottom-color: rgb(177, 177, 177); color: rgb(68, 68, 68); &quot;&gt;&lt;span class=&quot;versionAdded&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 0.75em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; float: right; background-position: initial initial; background-repeat: initial initial; &quot;&gt;version added:&amp;nbsp;&lt;a href=&quot;http://api.jquery.com/category/version/1.4.3/&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; border-bottom-style: initial; border-bottom-color: initial; color: rgb(15, 103, 161); &quot;&gt;1.4.3&lt;/a&gt;&lt;/span&gt;.change( [eventData], handler(eventObject) )&lt;/h4&gt;&lt;p class=&quot;arguement&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.2em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; background-position: initial initial; background-repeat: initial initial; &quot;&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 5px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; &quot;&gt;eventData&lt;/strong&gt;A map of data that will be passed to the event handler.&lt;/p&gt;
&lt;p class=&quot;arguement&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.2em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; background-position: initial initial; background-repeat: initial initial; &quot;&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 5px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; &quot;&gt;handler(eventObject)&lt;/strong&gt;A function to execute each time the event is triggered.&lt;/p&gt;
&lt;/li&gt;&lt;li class=&quot;signature&quot; id=&quot;change&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.1em; vertical-align: baseline; background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-position: initial initial; background-repeat: initial initial; &quot;&gt;&lt;h4 class=&quot;name&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 2px; padding-left: 0px; margin-top: 0.2em; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.4em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; letter-spacing: 0px; border-bottom-style: solid; border-bottom-color: rgb(177, 177, 177); color: rgb(68, 68, 68); &quot;&gt;&lt;span class=&quot;versionAdded&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 0.75em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; float: right; background-position: initial initial; background-repeat: initial initial; &quot;&gt;version added:&amp;nbsp;&lt;a href=&quot;http://api.jquery.com/category/version/1.0/&quot; style=&quot;padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; border-bottom-style: initial; border-bottom-color: initial; color: rgb(15, 103, 161); &quot;&gt;1.0&lt;/a&gt;&lt;/span&gt;.change()&lt;/h4&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;p style=&quot;padding-top: 0px; padding-right: 1px; padding-bottom: 0px; padding-left: 1px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.2em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(250, 250, 250); line-height: 1.7em; color: rgb(34, 34, 34); font-family: &#039;Trebuchet MS&#039;, Verdana, Helvetica, Arial, sans-serif; &quot;&gt;For example, consider the HTML:&lt;/p&gt;
&lt;pre style=&quot;padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; margin-top: 0px; margin-bottom: 0px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.1em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(250, 250, 250); border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(226, 225, 213); border-right-color: rgb(226, 225, 213); border-bottom-color: rgb(226, 225, 213); border-left-color: rgb(226, 225, 213); text-align: left; font-family: monaco, monospace; float: none; width: auto; overflow-x: auto; border-top-left-radius: 2px 2px; border-top-right-radius: 2px 2px; border-bottom-right-radius: 2px 2px; border-bottom-left-radius: 2px 2px; &quot;&gt;&amp;lt;form&amp;gt;
  &amp;lt;input class=&quot;target&quot; type=&quot;text&quot; value=&quot;Field 1&quot; /&amp;gt;
  &amp;lt;select class=&quot;target&quot;&amp;gt;
    &amp;lt;option value=&quot;option1&quot; selected=&quot;selected&quot;&amp;gt;Option 1&amp;lt;/option&amp;gt;
    &amp;lt;option value=&quot;option2&quot;&amp;gt;Option 2&amp;lt;/option&amp;gt;
  &amp;lt;/select&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;div id=&quot;other&quot;&amp;gt;
  Trigger the handler
&amp;lt;/div&amp;gt;&lt;/pre&gt;&lt;p style=&quot;padding-top: 0px; padding-right: 1px; padding-bottom: 0px; padding-left: 1px; margin-top: 1em; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.2em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(250, 250, 250); line-height: 1.7em; color: rgb(34, 34, 34); font-family: &#039;Trebuchet MS&#039;, Verdana, Helvetica, Arial, sans-serif; &quot;&gt;The event handler can be bound to the text input and the select box:&lt;/p&gt;
&lt;pre style=&quot;padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; margin-top: 0px; margin-bottom: 0px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 1.1em; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(250, 250, 250); border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(226, 225, 213); border-right-color: rgb(226, 225, 213); border-bottom-color: rgb(226, 225, 213); border-left-color: rgb(226, 225, 213); text-align: left; font-family: monaco, monospace; float: none; width: auto; overflow-x: auto; border-top-left-radius: 2px 2px; border-top-right-radius: 2px 2px; border-bottom-right-radius: 2px 2px; border-bottom-left-radius: 2px 2px; &quot;&gt;$(&#039;.target&#039;).change(function() {
  alert(&#039;Handler for .change() called.&#039;);
});&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-302-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-302-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24567216&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/302&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Jquery</category>
			<category>change()</category>
			<category>JQuery</category>
			<category>select</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/302</guid>
			<comments>http://pengs.pe.kr/302#entry302comment</comments>
			<pubDate>Fri, 13 Jan 2012 19:13:41 +0900</pubDate>
		</item>
		<item>
			<title>조선식 이름 짓기 이거 머냐 ㅋㅋㅋㅋ</title>
			<link>http://pengs.pe.kr/301</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/191DDC434F0F91F32811B7&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;89901_78900_5344.gif&quot; height=&quot;635&quot; width=&quot;500&quot;/&gt;&lt;/div&gt;&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
내 조선식 이름은..... &amp;nbsp; 밤마다 반란을 일으킨 관노 &amp;nbsp;ㅡ_ㅡ&lt;br /&gt;
마눌은 눈코뜰세 없이 나라 팔아먹은 아부떨던 이방 ㅡ_ㅡ;;;;;;;;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
머 좋은게 하나도 없다 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-301-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-301-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24547061&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/301&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Pengs &amp; Nule</category>
			<category>조선식</category>
			<category>조선식 이름짓기</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/301</guid>
			<comments>http://pengs.pe.kr/301#entry301comment</comments>
			<pubDate>Fri, 13 Jan 2012 11:09:29 +0900</pubDate>
		</item>
		<item>
			<title>jQuery hide, show, toggle</title>
			<link>http://pengs.pe.kr/300</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;p&gt;&lt;span style=&quot;font-family: 나눔명조, NanumMyeongjo, serif; font-size: 11pt; background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#7e8560&quot;&gt;&amp;nbsp;jQuery를 이용한 show 와 hide, 그리고 이 것을 하나의 버튼에 구현하는 toggle 입니다.&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, sans-serif; font-size: 11pt; background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;lt;div id=&#039;&lt;span style=&quot;font-size: 11pt; text-decoration: underline; &quot;&gt;theDiv&lt;/span&gt;&#039;&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;    &amp;lt;button id=&#039;&lt;b&gt;show&lt;/b&gt;&#039;&amp;gt;Show&amp;lt;/button&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;    &amp;lt;button id=&#039;&lt;b&gt;hide&lt;/b&gt;&#039;&amp;gt;Hide&amp;lt;/button&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;    &amp;lt;button id=&#039;&lt;b&gt;toggle&lt;/b&gt;&#039;&amp;gt;Toggle&amp;lt;/button&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;font class=&quot;Apple-style-span&quot; face=&quot;나눔고딕, NanumGothic, sans-serif&quot; color=&quot;#7e8560&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 15px; line-height: 22px; background-color: rgb(239, 244, 216);&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, sans-serif; font-size: 11pt; background-color: rgb(239, 244, 216);&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, sans-serif; font-size: 11pt; &quot;&gt;&amp;lt;script type=&#039;text/javascript&#039;&amp;gt;&lt;br /&gt;
        $(function() {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;$(&#039;#show&#039;).click(function(){&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;b&gt;$(&#039;#theDiv&#039;).show();&lt;/b&gt;&lt;br /&gt;
            });&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;$(&#039;#hide&#039;).click(function(){&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;b&gt;$(&#039;#theDiv&#039;).hide();&lt;/b&gt;&lt;br /&gt;
            });&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;$(&#039;#toggle&#039;).click(function(){&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;b&gt;$(&#039;#theDiv&#039;).toggle();&lt;/b&gt;&lt;br /&gt;
            });&lt;br /&gt;
        });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
style.display = &quot;none&quot;;&amp;nbsp;&lt;br /&gt;
&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: 나눔고딕, NanumGothic, sans-serif; font-size: 15px; line-height: 22px; &quot;&gt;style.display = &quot;block&quot;;&lt;/span&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, sans-serif; font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
하던것을 쉽게 사용할수 있을듯하네요&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-300-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-300-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24473383&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/300&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Jquery</category>
			<category>hide</category>
			<category>JQuery</category>
			<category>show</category>
			<category>toggle</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/300</guid>
			<comments>http://pengs.pe.kr/300#entry300comment</comments>
			<pubDate>Wed, 11 Jan 2012 15:34:38 +0900</pubDate>
		</item>
		<item>
			<title>Jquery checkbox 컨트롤</title>
			<link>http://pengs.pe.kr/299</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;1. 개수 구하기&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
$(&quot;input[name=chk1]:checkbox:checked&quot;).length&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;2. 체크여부 확인&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;﻿&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
$(&quot;#check_all&quot;).is(&#039;:checked&#039;)&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
3.&amp;nbsp; chk1 개수만큼 돌면서 실행한다&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
&amp;nbsp; $(&quot;input[name=&#039;item[]&#039;]:checkbox:checked&quot;).each(function(){items.push($(this).val());});&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
&amp;nbsp; var items_str = items.join(&#039;,&#039;);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
&amp;nbsp; 또는 var items_str = items.toString();&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
&amp;nbsp; 또는 var items_str = $(&quot;input[name=&#039;item[]&#039;]:checkbox:checked&quot;).map(function () {return this.value;}).get();&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
4. disabled 하기&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;
$(&quot;input[name=chk1]&quot;).attr(&#039;disabled&#039;, &#039;true&#039;);&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;autosourcing-stub-extra&quot; style=&quot;position: absolute; opacity: 0; line-height: 1.5; &quot;&gt;
&lt;p style=&quot;margin-top: 11px; margin-right: 0px; margin-bottom: 7px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; font-family: Dotum; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;[출처]&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://blog.naver.com/pureb612b/10122700173&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;jquery select , radio, checkbox 컨트롤 (값가져오기 및 설정)&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 5px; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;|&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;작성자&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://blog.naver.com/pureb612b&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;듀스포에&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p style=&quot;background-color: transparent; &quot;&gt;&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-299-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-299-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24503158&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/299&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Jquery</category>
			<category>checkbox</category>
			<category>JQuery</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/299</guid>
			<comments>http://pengs.pe.kr/299#entry299comment</comments>
			<pubDate>Wed, 11 Jan 2012 03:18:21 +0900</pubDate>
		</item>
		<item>
			<title>Jquery radio 값 가져오기 및 설정</title>
			<link>http://pengs.pe.kr/298</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;div&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;﻿&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;if($(&#039;:radio[name=&quot;radioname&quot;]:checked&#039;).length&amp;nbsp;&amp;lt; 1) &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;
{ alert(&#039;분류를 선택하세요&#039;); it.&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(126, 133, 96); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;radioname&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;[0].focus(); return false; }&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;또는 if (!$(&#039;:radio[name=&quot;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(126, 133, 96); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;radioname&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&quot;]:checked&#039;).val()) &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;
{ alert(&#039;성별을 선택하세요&#039;); $(&quot;#gender1&quot;).select(); return false; }&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;if($(&#039;:radio[name=&quot;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(126, 133, 96); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;radioname&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&quot;]:checked&#039;).val() != 3) { ... }&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;체크해제 : $(&quot;#&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(126, 133, 96); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;radioname&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&quot;).attr(&#039;checked&#039;, &#039;false&#039;)가 안되서 it.place[1].checked = false; 로 적용함&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;
disabled : $(&#039;:radio[name=&quot;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(126, 133, 96); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;radioname&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot; color=&quot;#7e8560&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&quot;]&#039;).attr(&#039;disabled&#039;, &#039;disabled&#039;);&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;div class=&quot;autosourcing-stub-extra&quot; style=&quot;position: absolute; opacity: 0; line-height: 1.5; &quot;&gt;
&lt;p style=&quot;margin-top: 11px; margin-right: 0px; margin-bottom: 7px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; font-family: Dotum; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(0, 0, 0);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#ffffff&quot;&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;[출처]&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://blog.naver.com/pureb612b/10122700173&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;jquery select , radio, checkbox 컨트롤 (값가져오기 및 설정)&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 5px; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;|&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;작성자&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://blog.naver.com/pureb612b&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none; &quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;듀스포에&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p style=&quot;background-color: transparent; &quot;&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-298-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-298-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24503178&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/298&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Jquery</category>
			<category>JQuery</category>
			<category>raio</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/298</guid>
			<comments>http://pengs.pe.kr/298#entry298comment</comments>
			<pubDate>Wed, 11 Jan 2012 03:16:05 +0900</pubDate>
		</item>
		<item>
			<title>Jquery select 값 가져오기 및 설정</title>
			<link>http://pengs.pe.kr/297</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;select box의 내용 가져오기&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;
$(&quot;#select_box &amp;gt; option:selected&quot;).val();&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;select box의 값 설정&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;
&amp;nbsp;$(&quot;#select_box &amp;gt; option[value=지정값]&quot;).attr(&quot;selected&quot;, &quot;true&quot;)&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 2px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: 돋움; text-align: justify; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;select disabled&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;
$(&#039;#&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;select_box&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&#039;).attr(&#039;disabled&#039;, &#039;true&#039;);&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 11pt; &quot;&gt;
해제 $(&#039;#&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); background-color: rgb(239, 244, 216); &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;select_box&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&#039;).attr(&#039;disabled&#039;, &#039;&#039;); // &#039;false&#039;를 줬을경우 안됨&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class=&quot;autosourcing-stub-extra&quot; style=&quot;position: absolute; opacity: 0; line-height: 1.5; &quot;&gt;
&lt;p style=&quot;margin-top: 11px; margin-right: 0px; margin-bottom: 7px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; font-family: Dotum; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: rgb(239, 244, 216);&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot;&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;[출처]&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://blog.naver.com/pureb612b/10122700173&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;jquery select , radio, checkbox 컨트롤 (값가져오기 및 설정)&amp;nbsp;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 5px; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;|&lt;/span&gt;&lt;/span&gt;&lt;strong style=&quot;padding-top: 0px; padding-right: 7px; padding-bottom: 0px; padding-left: 0px; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;작성자&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://blog.naver.com/pureb612b&quot; target=&quot;_blank&quot; style=&quot;text-decoration: none; &quot;&gt;&lt;span style=&quot;font-size: 11pt; &quot;&gt;듀스포에&lt;/span&gt;&lt;/a&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p style=&quot;background-color: transparent; &quot;&gt;&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-297-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-297-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24503184&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/297&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Jquery</category>
			<category>JQuery</category>
			<category>select</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/297</guid>
			<comments>http://pengs.pe.kr/297#entry297comment</comments>
			<pubDate>Wed, 11 Jan 2012 03:12:32 +0900</pubDate>
		</item>
		<item>
			<title>Jquery nyroModal Plugin (레이어 팝업)</title>
			<link>http://pengs.pe.kr/296</link>
			<description>	&lt;div class=&quot;ad250_outter&quot; style=&quot;float: right; margin: 0 0 20px 10px; position: relative; width: 250px;&quot;&gt;
		&lt;div class=&quot;ad250&quot; style=&quot;background: transparent url(http://i1.daumcdn.net/img-media/media3/common/ad250_bar_r2.gif) no-repeat scroll 0 0; width: 250px; height: 250px; padding: 18px 0 0; position: relative; width: 250px&quot;&gt;
			&lt;iframe width=&quot;250&quot; height=&quot;250&quot; border=&quot;0&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://amsv2.daum.net/ad/adview?secid=00659&amp;mkvid=1&amp;blogid=210882&quot;&gt;&lt;/iframe&gt;		&lt;/div&gt;
	&lt;/div&gt;
URL :&amp;nbsp;&lt;a href=&quot;http://nyromodal.nyrodev.com/&quot;&gt;http://nyromodal.nyrodev.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;레이어 팝업 띄우는 플러그인&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;URL 가서 예제 보면 쉽게 사용할수 있음~&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-296-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-296-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-center tt-sns-icon-size-big&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24406461&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:center; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=pengs.pe.kr/296&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
</description>
			<category>Jquery</category>
			<category>JQuery</category>
			<category>nyroModal</category>
			<category>레이어팝업</category>
			<author>Peng&#039;s</author>
			<guid>http://pengs.pe.kr/296</guid>
			<comments>http://pengs.pe.kr/296#entry296comment</comments>
			<pubDate>Tue, 10 Jan 2012 02:42:40 +0900</pubDate>
		</item>
	</channel>
</rss>

