<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[TNF : Tatter Network Foundation forum - 자바스크립트로 드래그, 우클릭 금지 시...]]></title>
	<link rel="self" href="http://forum.tattersite.com/ko/extern.php?action=feed&amp;tid=4679&amp;type=atom"/>
	<updated>2011-12-19T02:17:40Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.tattersite.com/ko/viewtopic.php?id=4679</id>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 자바스크립트로 드래그, 우클릭 금지 시...]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=41483#p41483"/>
			<content type="html"><![CDATA[<p>저도 오늘 이 생각을 하다가 네이버 지식인에서 해답을 찾았답니다.<br />3년이나 지난 글이지만 같은 의문을 갖고서 이 글을 읽게 되실 미래의 누군가를 위해 댓글을 쓰겠습니다. ㅋㅋ <br />body에 우클릭 드래그 금지 속성을 넣지 말고요,<br />article의 본문 부분(desc) 이 싸여 있는 div에다가<br />&lt;div align=&#039;justify&#039; oncontextmenu=&#039;return false&#039; ondragstart=&#039;return false&#039; onselectstart=&#039;return false&#039;&gt;<br />이렇게 속성을 주시면<br />textarea에서는 드래그가 된답니다!!<br />이거 찾아내서 행복해요 꺄아 &gt; &lt;</p>]]></content>
			<author>
				<name><![CDATA[모미지]]></name>
			</author>
			<updated>2011-12-19T02:17:40Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=41483#p41483</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[자바스크립트로 드래그, 우클릭 금지 시...]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=24303#p24303"/>
			<content type="html"><![CDATA[<p>아래 코드와 같이 자바스크립트로 드래그, 우클릭을 금지시켰는데<br />input이나 textarea에서도 드래그가 금지 되어버리는데;<br />input, textarea에서는 드래그를 허용시킬수 있는 방법없을까요?</p><br /><div class="codebox"><pre><code>//&lt;![CDATA[

// 드래그, 우클릭 금지 시키기 //
var omitformtags=[&quot;input&quot;, &quot;textarea&quot;, &quot;select&quot;]
omitformtags=omitformtags.join(&quot;|&quot;)
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!=&quot;undefined&quot;)
document.onselectstart=new Function (&quot;return false&quot;)
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

document.oncontextmenu = function() {return false;};
document.onselectstart = function() {return false;};
document.ondragstart = function() {return false;};

// 접었다 폈다 하기 //
function showhide(obj) {
    var el = document.getElementById(obj);
    if ( el.style.display != &#039;none&#039; ) {
        el.style.display = &#039;none&#039;;
    } else {
        el.style.display = &#039;inline&#039;;
    }
};

//]]&gt;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[멀더끙]]></name>
			</author>
			<updated>2008-02-20T03:22:07Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=24303#p24303</id>
		</entry>
</feed>
