<?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>Comments on: Drag and drop with Javascript</title>
	<atom:link href="http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/</link>
	<description>News, opinion, and fresh thinking for web developers and designers. The official podcast of sitepoint.com.</description>
	<lastBuildDate>Sun, 08 Nov 2009 20:06:11 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anonymous</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-881334</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 21 Feb 2009 07:21:18 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-881334</guid>
		<description>&lt;code&gt;&lt;strong&gt;&lt;code&gt;&lt;/code&gt;&lt;/strong&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><strong><code></code></strong></code></p>]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-793105</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 09 Sep 2008 06:58:32 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-793105</guid>
		<description>Okay, i;m working on an on-line RPG Adventure game. I have been working endlessly to make it in a &quot;nothing-but-AJAX&quot; sort-of manner and successfully found a way to make it load seperate sections of the page to reduce server bandwidth, hence maximizing loading speeds.

As one of the feature I was wishing to have a drag/drop item implementation. One of the ideas I had had was to have the user make potions, and such, using drag/drop. So, if a user wants to make a potion he/she would drag the first ingredient to the pastel, then drag the &quot;goop&quot; to the flask, then repeat. How do I make a drag/drop element disapear when dragged over another element which would then be modified?

Please include as much information as possible. Also, if somebody would be interested in joining me on the project (making the game) please let me know. All I ask is that you be able to program in PHP and JS.

Thank you,
James</description>
		<content:encoded><![CDATA[<p>Okay, i;m working on an on-line RPG Adventure game. I have been working endlessly to make it in a &#8220;nothing-but-AJAX&#8221; sort-of manner and successfully found a way to make it load seperate sections of the page to reduce server bandwidth, hence maximizing loading speeds.</p>
<p>As one of the feature I was wishing to have a drag/drop item implementation. One of the ideas I had had was to have the user make potions, and such, using drag/drop. So, if a user wants to make a potion he/she would drag the first ingredient to the pastel, then drag the &#8220;goop&#8221; to the flask, then repeat. How do I make a drag/drop element disapear when dragged over another element which would then be modified?</p>
<p>Please include as much information as possible. Also, if somebody would be interested in joining me on the project (making the game) please let me know. All I ask is that you be able to program in PHP and JS.</p>
<p>Thank you,<br />
James</p>]]></content:encoded>
	</item>
	<item>
		<title>By: MisterB</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-314924</link>
		<dc:creator>MisterB</dc:creator>
		<pubDate>Tue, 24 Jul 2007 22:59:17 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-314924</guid>
		<description>@vinay : You can; set the innerHTML of a table in IE ( it doen&#039;t support it) You&#039;ll hav to rebuild the table dynamicly i think.:(

@DHTML Kitchen: Great stuff at your site! The only comment I have is that non of the DHTML script are &#039;gracefully degrading&#039; meaning that when the client brouwser does&#039;t support javascript ( or has it switched off) the hole functionality of the site is gone. Now with pc/mac users the chance of this happening is not very big (6% jan 2007 source w3 ) but with the growing popularity of mobile devices it would be to bad to direct user to a site that doesn&#039;t work :(

But anyways, looks very nice :D keep up the good work! 

cheers</description>
		<content:encoded><![CDATA[<p>@vinay : You can; set the innerHTML of a table in IE ( it doen&#8217;t support it) You&#8217;ll hav to rebuild the table dynamicly i think.:(</p>
<p>@DHTML Kitchen: Great stuff at your site! The only comment I have is that non of the DHTML script are &#8216;gracefully degrading&#8217; meaning that when the client brouwser does&#8217;t support javascript ( or has it switched off) the hole functionality of the site is gone. Now with pc/mac users the chance of this happening is not very big (6% jan 2007 source w3 ) but with the growing popularity of mobile devices it would be to bad to direct user to a site that doesn&#8217;t work :(</p>
<p>But anyways, looks very nice :D keep up the good work! </p>
<p>cheers</p>]]></content:encoded>
	</item>
	<item>
		<title>By: vinay</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-244692</link>
		<dc:creator>vinay</dc:creator>
		<pubDate>Fri, 11 May 2007 08:44:24 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-244692</guid>
		<description>HI all , 
I have included one dragdrop script.
The page creates one table and drag and drop works fine in that page , however as per one need I created that table in that page  via javascript ..
some thing like

html=&quot;....&quot; ;
document.getElementById(&#039;table&#039;).innerHTML = html;

But now the drag and drop is not working.

any suugestions will be highly appreciated.
thanks
vinay.145@gmail.com</description>
		<content:encoded><![CDATA[<p>HI all ,<br />
I have included one dragdrop script.<br />
The page creates one table and drag and drop works fine in that page , however as per one need I created that table in that page  via javascript ..<br />
some thing like</p>
<p>html=&#8221;&#8230;.&#8221; ;<br />
document.getElementById(&#8217;table&#8217;).innerHTML = html;</p>
<p>But now the drag and drop is not working.</p>
<p>any suugestions will be highly appreciated.<br />
thanks<br />
<a href="mailto:vinay.145@gmail.com">vinay.145@gmail.com</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: hi</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-244610</link>
		<dc:creator>hi</dc:creator>
		<pubDate>Fri, 11 May 2007 06:09:32 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-244610</guid>
		<description>HI all , 
I have included one dragdrop script.
The page creates one table and drag and drop works fine in that page , however as per one need I created that table in that page  via javascript ..
some thing like

html=&quot;....&quot; ;
document.getElementById(&#039;table&#039;).innerHTML = html;

But now the drag and drop is not working.

any suugestions will be highly appreciated.
thanks
vinay.145@gmail.com</description>
		<content:encoded><![CDATA[<p>HI all ,<br />
I have included one dragdrop script.<br />
The page creates one table and drag and drop works fine in that page , however as per one need I created that table in that page  via javascript ..<br />
some thing like</p>
<p>html=&#8221;&#8230;.&#8221; ;<br />
document.getElementById(&#8217;table&#8217;).innerHTML = html;</p>
<p>But now the drag and drop is not working.</p>
<p>any suugestions will be highly appreciated.<br />
thanks<br />
<a href="mailto:vinay.145@gmail.com">vinay.145@gmail.com</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: designcode</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-217888</link>
		<dc:creator>designcode</dc:creator>
		<pubDate>Wed, 04 Apr 2007 06:31:54 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-217888</guid>
		<description>I love script.aculo.us&#039;s drag and drop, Damn easy to plug in your code.</description>
		<content:encoded><![CDATA[<p>I love script.aculo.us&#8217;s drag and drop, Damn easy to plug in your code.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-201874</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 13 Mar 2007 06:48:55 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-201874</guid>
		<description>&lt;em&gt;&lt;blockquote&gt;&lt;code&gt;&lt;pre&gt;&lt;code class=&quot;html&quot;&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/code&gt;&lt;/blockquote&gt;&lt;/em&gt;&lt;strong&gt;&lt;/strong&gt;&lt;em&gt;&lt;/em&gt;&lt;blockquote&gt;&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p><em><br />
<blockquote><code><pre><code class="html"></code></pre>
<p></p></code></blockquote></em></p>
<p><strong></strong><em></em><br />
<blockquote></blockquote></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-172277</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 05 Feb 2007 04:50:18 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-172277</guid>
		<description>Mattia,

I&#039;ve got the same problem with IE 6+7 -- hanging/crashing -- any resolution?</description>
		<content:encoded><![CDATA[<p>Mattia,</p>
<p>I&#8217;ve got the same problem with IE 6+7 &#8212; hanging/crashing &#8212; any resolution?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Mattia</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-74637</link>
		<dc:creator>Mattia</dc:creator>
		<pubDate>Thu, 26 Oct 2006 15:05:05 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-74637</guid>
		<description>I&#039;m trying to use Walter&#039;s superb DD library, but i have some browser&#039;s starving/crashing (seems that the browser hangs in a infinite loop in some js function inside main .js file) problems in IE (version 6.0.2) while in Moz all works fine ... ????? Anyone got this problem ? Please let me know ...</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to use Walter&#8217;s superb DD library, but i have some browser&#8217;s starving/crashing (seems that the browser hangs in a infinite loop in some js function inside main .js file) problems in IE (version 6.0.2) while in Moz all works fine &#8230; ????? Anyone got this problem ? Please let me know &#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.sitepoint.com/blogs/2004/03/31/drag-and-drop-with-javascript/comment-page-1/#comment-68372</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 16 Oct 2006 07:03:57 +0000</pubDate>
		<guid isPermaLink="false">1679657606#comment-68372</guid>
		<description>but the image in Tropes,s drad and drop returns back after dropping. so it should be where it is only the image is copied and dropped and no backward move should be shown.
Can anybody help me.</description>
		<content:encoded><![CDATA[<p>but the image in Tropes,s drad and drop returns back after dropping. so it should be where it is only the image is copied and dropped and no backward move should be shown.<br />
Can anybody help me.</p>]]></content:encoded>
	</item>
</channel>
</rss>
