<?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: Learn How To Create Your Own jQuery Plugin</title>
	<atom:link href="http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/</link>
	<description>A Resource For All Things Design</description>
	<lastBuildDate>Thu, 05 Jan 2012 16:05:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ardi</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-124133</link>
		<dc:creator>Ardi</dc:creator>
		<pubDate>Thu, 03 Mar 2011 16:21:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-124133</guid>
		<description>Ka0ticstyle&quot; : Nice info..
i found problem like you,,,</description>
		<content:encoded><![CDATA[<p>Ka0ticstyle&#8221; : Nice info..<br />
i found problem like you,,,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Casti Moto</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-66700</link>
		<dc:creator>Casti Moto</dc:creator>
		<pubDate>Mon, 21 Jun 2010 19:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-66700</guid>
		<description>Thanks for the tut, I am starting my own JQ plugin just now, eager to see the outcome.</description>
		<content:encoded><![CDATA[<p>Thanks for the tut, I am starting my own JQ plugin just now, eager to see the outcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ka0ticstyle</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-65861</link>
		<dc:creator>Ka0ticstyle</dc:creator>
		<pubDate>Wed, 16 Jun 2010 16:56:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-65861</guid>
		<description>There is no, myoptions.number1 or .number2.  So you would need to change that.
The line should read:
$(this).html (myoptions.label + &quot; (&quot; + myoptions.operation + &quot;)&quot; + (number1+number2));</description>
		<content:encoded><![CDATA[<p>There is no, myoptions.number1 or .number2.  So you would need to change that.<br />
The line should read:<br />
$(this).html (myoptions.label + &#8221; (&#8221; + myoptions.operation + &#8220;)&#8221; + (number1+number2));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SchrumpfschlÃ¤uche</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-57905</link>
		<dc:creator>SchrumpfschlÃ¤uche</dc:creator>
		<pubDate>Wed, 28 Apr 2010 15:57:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-57905</guid>
		<description>Thanks for the work.</description>
		<content:encoded><![CDATA[<p>Thanks for the work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javier Dorough</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-57822</link>
		<dc:creator>Javier Dorough</dc:creator>
		<pubDate>Wed, 28 Apr 2010 02:02:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-57822</guid>
		<description>I enjoy coming back daily to see your musings.  I have your page bookmarked on my favorite read list!</description>
		<content:encoded><![CDATA[<p>I enjoy coming back daily to see your musings.  I have your page bookmarked on my favorite read list!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-48385</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Tue, 02 Feb 2010 08:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-48385</guid>
		<description>And also make sure that you have linked original JQuery file in the current page</description>
		<content:encoded><![CDATA[<p>And also make sure that you have linked original JQuery file in the current page</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-48382</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Tue, 02 Feb 2010 08:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-48382</guid>
		<description>@Alaa Al-Hussein . You can achieve this if your method signature looks like this:

(function($){
 $.fn. myPlugin= function() {

    //Do something here

 };
})(jQuery);


And call your plugin method same as before:
$(â€œ#myElementIDâ€).myPlugin();


And let me know if it helped. 

Thanks,
Praveen</description>
		<content:encoded><![CDATA[<p>@Alaa Al-Hussein . You can achieve this if your method signature looks like this:</p>
<p>(function($){<br />
 $.fn. myPlugin= function() {</p>
<p>    //Do something here</p>
<p> };<br />
})(jQuery);</p>
<p>And call your plugin method same as before:<br />
$(â€œ#myElementIDâ€).myPlugin();</p>
<p>And let me know if it helped. </p>
<p>Thanks,<br />
Praveen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alaa Al-Hussein</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-46479</link>
		<dc:creator>Alaa Al-Hussein</dc:creator>
		<pubDate>Mon, 18 Jan 2010 03:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-46479</guid>
		<description>I have problem with &quot;this&quot;

When defining a plugin as $.fn.myPlugin
then passing HTML element into it as follows:
$(&quot;#myElementID&quot;).myPlugin

How can I handle the html element? is it by using &quot;this&quot;?
it didn&#039;t work for me.

Thanks</description>
		<content:encoded><![CDATA[<p>I have problem with &#8220;this&#8221;</p>
<p>When defining a plugin as $.fn.myPlugin<br />
then passing HTML element into it as follows:<br />
$(&#8220;#myElementID&#8221;).myPlugin</p>
<p>How can I handle the html element? is it by using &#8220;this&#8221;?<br />
it didn&#8217;t work for me.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Statistics Homework Help</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-38751</link>
		<dc:creator>Statistics Homework Help</dc:creator>
		<pubDate>Thu, 12 Nov 2009 10:27:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-38751</guid>
		<description>I was very pleased to find this site. I wanted to thank you for this great read!!</description>
		<content:encoded><![CDATA[<p>I was very pleased to find this site. I wanted to thank you for this great read!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stanley</title>
		<link>http://www.myinkblog.com/learn-how-to-create-your-own-jquery-plugin/#comment-37914</link>
		<dc:creator>Stanley</dc:creator>
		<pubDate>Sat, 07 Nov 2009 01:34:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=5905#comment-37914</guid>
		<description>hey, I didn&#039;t know where to contact you but your layout design looked rearranged on firefox and internet explorer. Anyways, i just suscribd to your rss.</description>
		<content:encoded><![CDATA[<p>hey, I didn&#8217;t know where to contact you but your layout design looked rearranged on firefox and internet explorer. Anyways, i just suscribd to your rss.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/8 queries in 0.006 seconds using disk: basic
Object Caching 572/572 objects using disk: basic

Served from: www.myinkblog.com @ 2012-02-12 18:27:13 -->
