<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>댓글 : 콘텐트의 높이에 따라 자동으로 Resizing 되는 Iframe 만들기.</title>
	<atom:link href="http://naradesign.net/wp/2007/12/12/129/feed/" rel="self" type="application/rss+xml" />
	<link>http://naradesign.net/wp/2007/12/12/129/</link>
	<description>웹표준, 웹접근성, 유니버설디자인, HTML, CSS, UI, UX, UD</description>
	<lastBuildDate>Tue, 16 Mar 2010 08:14:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>정찬명가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-47138</link>
		<dc:creator>정찬명</dc:creator>
		<pubDate>Thu, 21 May 2009 16:53:26 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-47138</guid>
		<description>@황준상
감사합니다. 여러가지 코드 레퍼런스가 있네요. ^^</description>
		<content:encoded><![CDATA[<p>@황준상<br />
감사합니다. 여러가지 코드 레퍼런스가 있네요. ^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>황준상가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-47134</link>
		<dc:creator>황준상</dc:creator>
		<pubDate>Thu, 21 May 2009 15:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-47134</guid>
		<description>function addLoadEvent(func){
 var oldonload = window.onload;
 if(typeof window.onload != &quot;function&quot;){
  window.onload = func;
 }else{
  window.onload = function(){
   oldonload();
   func();
  }
 }
}
function resize(){
 var height = document.body.scrollHeight;
 parent.document.getElementById(&quot;iframeID&quot;).style.height = height + 50 + &quot;px&quot;;
}
addLoadEvent(resize);

전이런식으로 사용했는데.. 방법은 많군요..</description>
		<content:encoded><![CDATA[<p>function addLoadEvent(func){<br />
 var oldonload = window.onload;<br />
 if(typeof window.onload != &#8220;function&#8221;){<br />
  window.onload = func;<br />
 }else{<br />
  window.onload = function(){<br />
   oldonload();<br />
   func();<br />
  }<br />
 }<br />
}<br />
function resize(){<br />
 var height = document.body.scrollHeight;<br />
 parent.document.getElementById(&#8220;iframeID&#8221;).style.height = height + 50 + &#8220;px&#8221;;<br />
}<br />
addLoadEvent(resize);</p>
<p>전이런식으로 사용했는데.. 방법은 많군요..</p>
]]></content:encoded>
	</item>
	<item>
		<title>정찬명가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-47133</link>
		<dc:creator>정찬명</dc:creator>
		<pubDate>Thu, 21 May 2009 15:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-47133</guid>
		<description>@쏘리쏘리
네, 사실 iframe 에 onload 속성은 허용되지 않는 속성이죠. ^^; 감사합니다.</description>
		<content:encoded><![CDATA[<p>@쏘리쏘리<br />
네, 사실 iframe 에 onload 속성은 허용되지 않는 속성이죠. ^^; 감사합니다.</p>
]]></content:encoded>
	</item>
	<item>
		<title>쏘리쏘리가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-47126</link>
		<dc:creator>쏘리쏘리</dc:creator>
		<pubDate>Thu, 21 May 2009 07:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-47126</guid>
		<description>저 같은경우는 웹표준에도 어긋나지 않게 .. 해당 iframe에 호출되는 body 에서 함수를 온로드 하여 해결했습니다.

iframe 설정 페이지 :

function f_resizeHeight(height) {
  document.getElementById(&quot;iframe네임&quot;).style.height = height+&#039;px&#039;;
}

iframe으로 로딩된 페이지 : (+10은 브라우저마다 유격이 있으므로 ^^)
</description>
		<content:encoded><![CDATA[<p>저 같은경우는 웹표준에도 어긋나지 않게 .. 해당 iframe에 호출되는 body 에서 함수를 온로드 하여 해결했습니다.</p>
<p>iframe 설정 페이지 :</p>
<p>function f_resizeHeight(height) {<br />
  document.getElementById(&#8220;iframe네임&#8221;).style.height = height+&#8217;px&#8217;;<br />
}</p>
<p>iframe으로 로딩된 페이지 : (+10은 브라우저마다 유격이 있으므로 ^^)</p>
]]></content:encoded>
	</item>
	<item>
		<title>안토니오가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-42809</link>
		<dc:creator>안토니오</dc:creator>
		<pubDate>Fri, 12 Dec 2008 07:26:15 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-42809</guid>
		<description>감사합니다. 다른거는 전부 안되던데.. 이거는 되네요.. 너무 감사합니다.
자주 오겠습니다.</description>
		<content:encoded><![CDATA[<p>감사합니다. 다른거는 전부 안되던데.. 이거는 되네요.. 너무 감사합니다.<br />
자주 오겠습니다.</p>
]]></content:encoded>
	</item>
	<item>
		<title>쭈쭈가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-41590</link>
		<dc:creator>쭈쭈</dc:creator>
		<pubDate>Tue, 25 Nov 2008 02:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-41590</guid>
		<description>제가 자주 쓰는 방법인데 일주일 만에 홈페이지 하나 만들어 달라고 하면

디자이너가 던져준 것에 iframe으로 도배를 해서 리사이즈 해버리죠

게시판이런거 넣을때 편리해요.. 하지만 만들어주고 나서 미안하죠;</description>
		<content:encoded><![CDATA[<p>제가 자주 쓰는 방법인데 일주일 만에 홈페이지 하나 만들어 달라고 하면</p>
<p>디자이너가 던져준 것에 iframe으로 도배를 해서 리사이즈 해버리죠</p>
<p>게시판이런거 넣을때 편리해요.. 하지만 만들어주고 나서 미안하죠;</p>
]]></content:encoded>
	</item>
	<item>
		<title>정찬명가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-38298</link>
		<dc:creator>정찬명</dc:creator>
		<pubDate>Fri, 22 Aug 2008 05:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-38298</guid>
		<description>정순열님, 안녕하세요? 이메일로 문의 주시면 안될까요? dece24앳gmail.com</description>
		<content:encoded><![CDATA[<p>정순열님, 안녕하세요? 이메일로 문의 주시면 안될까요? dece24앳gmail.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>정순열가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-38296</link>
		<dc:creator>정순열</dc:creator>
		<pubDate>Fri, 22 Aug 2008 05:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-38296</guid>
		<description>정찬명님께 문의 드립니다. 
아래의 연락처로 전화 한통 주시면 감사하겠습니다.
010-2521-1331</description>
		<content:encoded><![CDATA[<p>정찬명님께 문의 드립니다.<br />
아래의 연락처로 전화 한통 주시면 감사하겠습니다.<br />
010-2521-1331</p>
]]></content:encoded>
	</item>
	<item>
		<title>astraea가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-31720</link>
		<dc:creator>astraea</dc:creator>
		<pubDate>Wed, 02 Apr 2008 05:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-31720</guid>
		<description>전 copy paste 할뿐입니다-_-;;;
다행히? 별로 웹프로그래밍을 할 일이 없어서..(평범유저니까요..=3=3)</description>
		<content:encoded><![CDATA[<p>전 copy paste 할뿐입니다-_-;;;<br />
다행히? 별로 웹프로그래밍을 할 일이 없어서..(평범유저니까요..=3=3)</p>
]]></content:encoded>
	</item>
	<item>
		<title>정찬명가 만듬</title>
		<link>http://naradesign.net/wp/2007/12/12/129/comment-page-1/#comment-31718</link>
		<dc:creator>정찬명</dc:creator>
		<pubDate>Wed, 02 Apr 2008 05:11:22 +0000</pubDate>
		<guid isPermaLink="false">http://naradesign.net/wp/2007/12/12/129/#comment-31718</guid>
		<description>astraea님 안녕하세요? 저는 크로스브라우징은 둘째치고 Javascript/DOM 코드 처리하시는 분들 너무 부러워요 ㅎㅎ</description>
		<content:encoded><![CDATA[<p>astraea님 안녕하세요? 저는 크로스브라우징은 둘째치고 Javascript/DOM 코드 처리하시는 분들 너무 부러워요 ㅎㅎ</p>
]]></content:encoded>
	</item>
</channel>
</rss>
