<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for fromvega.com</title>
	<link>http://fromvega.com/wordpress</link>
	<description>Throwing code to the wind</description>
	<pubDate>Sun, 01 Aug 2010 02:03:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>

	<item>
		<title>Comment on EasyDrag jQuery Plugin by loleg</title>
		<link>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1338</link>
		<author>loleg</author>
		<pubDate>Sat, 12 Jun 2010 18:48:50 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1338</guid>
					<description>I've changed the fixed z-index to this to make the dragged element always go to the top of the page:

// set z-index
if (window.lastdraggedix == null) window.lastdraggedix = 0;
$(this).css("z-index", ++window.lastdraggedix + 1000);</description>
		<content:encoded><![CDATA[<p>I&#8217;ve changed the fixed z-index to this to make the dragged element always go to the top of the page:</p>
<p>// set z-index<br />
if (window.lastdraggedix == null) window.lastdraggedix = 0;<br />
$(this).css(&#8221;z-index&#8221;, ++window.lastdraggedix + 1000);</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Auto-Complete Field with jQuery, JSON &#038; PHP by Shah</title>
		<link>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1336</link>
		<author>Shah</author>
		<pubDate>Thu, 10 Jun 2010 05:54:59 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1336</guid>
					<description>when i use "autocomplete.php?"+document.form.item1.value + part="

it doesnt update my list menu until i refresh my page :(</description>
		<content:encoded><![CDATA[<p>when i use &#8220;autocomplete.php?&#8221;+document.form.item1.value + part=&#8221;</p>
<p>it doesnt update my list menu until i refresh my page <img src='http://fromvega.com/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Auto-Complete Field with jQuery, JSON &#038; PHP by Shah</title>
		<link>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1335</link>
		<author>Shah</author>
		<pubDate>Thu, 10 Jun 2010 05:51:03 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1335</guid>
					<description>Cant wait for the multi field autocomplete, i'm having a hard time here :(</description>
		<content:encoded><![CDATA[<p>Cant wait for the multi field autocomplete, i&#8217;m having a hard time here <img src='http://fromvega.com/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on EasyDrag jQuery Plugin by Emmanuel Delay</title>
		<link>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1334</link>
		<author>Emmanuel Delay</author>
		<pubDate>Mon, 31 May 2010 18:15:45 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1334</guid>
					<description>Hey,

First of all, thanks.  Works great.

This script can be extended to make a slider control.
example: http://www.manutechnica.com/slider/

It still needs some work.</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>First of all, thanks.  Works great.</p>
<p>This script can be extended to make a slider control.<br />
example: <a href="http://www.manutechnica.com/slider/" rel="nofollow">http://www.manutechnica.com/slider/</a></p>
<p>It still needs some work.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Auto-Complete Field with jQuery, JSON &#038; PHP by Goedkoop website laten maken</title>
		<link>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1333</link>
		<author>Goedkoop website laten maken</author>
		<pubDate>Sat, 29 May 2010 12:38:23 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1333</guid>
					<description>Awesome! One of the better auto-suggest scripts I have seen over the web. Need to try this one out</description>
		<content:encoded><![CDATA[<p>Awesome! One of the better auto-suggest scripts I have seen over the web. Need to try this one out</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on EasyDrag jQuery Plugin by Rei Roldan</title>
		<link>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1332</link>
		<author>Rei Roldan</author>
		<pubDate>Tue, 25 May 2010 23:12:09 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1332</guid>
					<description>Nice plugin thanks!!!

In the setHandler method you should probably change:

// change handle cursor type
            $("#" + handlerId).css("cursor", "move");

            // bind event handler
            $("#" + handlerId).mousedown(function (e) {
                holdingHandler = true;
                $(draggable).trigger('mousedown', e);
            });

            // bind event handler
            $("#" + handlerId).mouseup(function (e) {
                holdingHandler = false;
            });


To something like this:

 var handler = $(handlerId, draggable);

            // change handle cursor type
            handler.css("cursor", "move");

            // bind event handler
            handler.mousedown(function (e) {
                holdingHandler = true;
                $(draggable).trigger('mousedown', e);
            });

            // bind event handler
            handler.mouseup(function (e) {
                holdingHandler = false;
            });

avoiding having to set the handler by id :)

Good work on the plugin

</description>
		<content:encoded><![CDATA[<p>Nice plugin thanks!!!</p>
<p>In the setHandler method you should probably change:</p>
<p>// change handle cursor type<br />
            $(&#8221;#&#8221; + handlerId).css(&#8221;cursor&#8221;, &#8220;move&#8221;);</p>
<p>            // bind event handler<br />
            $(&#8221;#&#8221; + handlerId).mousedown(function (e) {<br />
                holdingHandler = true;<br />
                $(draggable).trigger(&#8217;mousedown&#8217;, e);<br />
            });</p>
<p>            // bind event handler<br />
            $(&#8221;#&#8221; + handlerId).mouseup(function (e) {<br />
                holdingHandler = false;<br />
            });</p>
<p>To something like this:</p>
<p> var handler = $(handlerId, draggable);</p>
<p>            // change handle cursor type<br />
            handler.css(&#8221;cursor&#8221;, &#8220;move&#8221;);</p>
<p>            // bind event handler<br />
            handler.mousedown(function (e) {<br />
                holdingHandler = true;<br />
                $(draggable).trigger(&#8217;mousedown&#8217;, e);<br />
            });</p>
<p>            // bind event handler<br />
            handler.mouseup(function (e) {<br />
                holdingHandler = false;<br />
            });</p>
<p>avoiding having to set the handler by id <img src='http://fromvega.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Good work on the plugin</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Scripts by Booming</title>
		<link>http://fromvega.com/wordpress/2007/05/13/scripts/#comment-1329</link>
		<author>Booming</author>
		<pubDate>Wed, 12 May 2010 09:08:03 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/05/13/scripts/#comment-1329</guid>
					<description>Hi,
Please can u help me with idea on how 2 develop a local search engine driven by Ajax and that makes use of XML in other to load faster. A quick response will be appreciated pls.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Please can u help me with idea on how 2 develop a local search engine driven by Ajax and that makes use of XML in other to load faster. A quick response will be appreciated pls.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Auto-Complete Field with jQuery, JSON &#038; PHP by ajaz ali</title>
		<link>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1328</link>
		<author>ajaz ali</author>
		<pubDate>Mon, 10 May 2010 08:03:47 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/05/05/auto-complete-field-with-jquery-json-php/#comment-1328</guid>
					<description>i have same problem as "resimler"</description>
		<content:encoded><![CDATA[<p>i have same problem as &#8220;resimler&#8221;</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Auto-Complete Field with jQuery - Code Explained by Obaid</title>
		<link>http://fromvega.com/wordpress/2007/05/08/auto-complete-field-with-jquery-code-explained/#comment-1322</link>
		<author>Obaid</author>
		<pubDate>Sun, 04 Apr 2010 04:35:29 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/05/08/auto-complete-field-with-jquery-code-explained/#comment-1322</guid>
					<description>Hi,

Its not working in IE7. in FF it works perfectly.

Please suggest

Thanks
Obaid...</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Its not working in IE7. in FF it works perfectly.</p>
<p>Please suggest</p>
<p>Thanks<br />
Obaid&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on EasyDrag jQuery Plugin by Vasim Padhiyar</title>
		<link>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1320</link>
		<author>Vasim Padhiyar</author>
		<pubDate>Wed, 31 Mar 2010 06:34:25 +0000</pubDate>
		<guid>http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/#comment-1320</guid>
					<description>is there way with this plugins to drag div into the specific target div only ?
and once it find target div and dropped it should draggable = false.
one target div has its specific div to drop into it.
thank you

Vasim Padhiyar</description>
		<content:encoded><![CDATA[<p>is there way with this plugins to drag div into the specific target div only ?<br />
and once it find target div and dropped it should draggable = false.<br />
one target div has its specific div to drop into it.<br />
thank you</p>
<p>Vasim Padhiyar</p>
]]></content:encoded>
				</item>
</channel>
</rss>
