<?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: jStickyNote: A jQuery Plugin for Creating Sticky Notes</title>
	<atom:link href="http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/</link>
	<description>useful drops of code</description>
	<lastBuildDate>Thu, 29 Jul 2010 20:42:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Limpan</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-5294</link>
		<dc:creator>Limpan</dc:creator>
		<pubDate>Wed, 07 Jul 2010 12:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-5294</guid>
		<description>@ P.Arta.

To get the positions use:

var pos $(&#039;#id_on_element&#039;).offset();

alert(&#039;left: &#039;+ pos.left +&#039; top:&#039;+pos.top);

Simple as that!</description>
		<content:encoded><![CDATA[<p>@ P.Arta.</p>
<p>To get the positions use:</p>
<p>var pos $(&#8216;#id_on_element&#8217;).offset();</p>
<p>alert(&#8216;left: &#8216;+ pos.left +&#8217; top:&#8217;+pos.top);</p>
<p>Simple as that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florin</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-4212</link>
		<dc:creator>Florin</dc:creator>
		<pubDate>Fri, 19 Mar 2010 20:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-4212</guid>
		<description>Julien de Prabère 

where i have to put this line 
$(‘div.jStickyNote’).mouseover($(this).focus()); to make focus on mouse over?</description>
		<content:encoded><![CDATA[<p>Julien de Prabère </p>
<p>where i have to put this line<br />
$(‘div.jStickyNote’).mouseover($(this).focus()); to make focus on mouse over?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nick</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-2758</link>
		<dc:creator>nick</dc:creator>
		<pubDate>Fri, 29 Jan 2010 00:46:42 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-2758</guid>
		<description>double click does not appear to work in Chrome4</description>
		<content:encoded><![CDATA[<p>double click does not appear to work in Chrome4</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julien de Prabère</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-2672</link>
		<dc:creator>Julien de Prabère</dc:creator>
		<pubDate>Tue, 26 Jan 2010 14:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-2672</guid>
		<description>Good, very nice plugin !

Just add a line like this after using stickynote :
$(&#039;div.jStickyNote&#039;).mouseover($(this).focus()); 
With the focus on the notes, the buttons will work at the first click !

Remove too the quotes for the top and left values at the line 63, especially if you want to give us different values 
.css({&#039;position&#039;:&#039;absolute&#039;,&#039;top&#039;:0,&#039;left&#039;:0})</description>
		<content:encoded><![CDATA[<p>Good, very nice plugin !</p>
<p>Just add a line like this after using stickynote :<br />
$(&#8216;div.jStickyNote&#8217;).mouseover($(this).focus());<br />
With the focus on the notes, the buttons will work at the first click !</p>
<p>Remove too the quotes for the top and left values at the line 63, especially if you want to give us different values<br />
.css({&#8216;position&#8217;:'absolute&#8217;,'top&#8217;:0,&#8217;left&#8217;:0})</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Nowak</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-2621</link>
		<dc:creator>Daniel Nowak</dc:creator>
		<pubDate>Mon, 25 Jan 2010 11:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-2621</guid>
		<description>This plugin looks suberb, but i had some problems with the usability and the function set. So I wrote my own sticky note plugin. You can find it here: http://jquery-sticky-notes.com</description>
		<content:encoded><![CDATA[<p>This plugin looks suberb, but i had some problems with the usability and the function set. So I wrote my own sticky note plugin. You can find it here: <a href="http://jquery-sticky-notes.com" rel="nofollow">http://jquery-sticky-notes.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: P.Arta</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-2421</link>
		<dc:creator>P.Arta</dc:creator>
		<pubDate>Tue, 19 Jan 2010 12:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-2421</guid>
		<description>I would like to save the content and the (x,y) coordinates of each note to a SQL database, but I don&#039;t get the clue of how to get the X,Y coordinates and save them.

Could anyone please help me with this?</description>
		<content:encoded><![CDATA[<p>I would like to save the content and the (x,y) coordinates of each note to a SQL database, but I don&#8217;t get the clue of how to get the X,Y coordinates and save them.</p>
<p>Could anyone please help me with this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-2075</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Fri, 08 Jan 2010 23:59:55 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-2075</guid>
		<description>Great plugin! but there&#039;s a problem...
As Colin noted, there&#039;s no way it can work if containment is set to anything but #content.
You should replace line 87 with something like: $(&#039;#&#039;+o.containment).append(_div_wrap);
Or provide a fallback to, say, the document&#039;s body.</description>
		<content:encoded><![CDATA[<p>Great plugin! but there&#8217;s a problem&#8230;<br />
As Colin noted, there&#8217;s no way it can work if containment is set to anything but #content.<br />
You should replace line 87 with something like: $(&#8216;#&#8217;+o.containment).append(_div_wrap);<br />
Or provide a fallback to, say, the document&#8217;s body.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Plugins : jQuery jStickyNote Plugin &#171; FrameLinks</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-1478</link>
		<dc:creator>Plugins : jQuery jStickyNote Plugin &#171; FrameLinks</dc:creator>
		<pubDate>Mon, 07 Dec 2009 01:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-1478</guid>
		<description>[...] Site Officiel : http://www.tympanus.net/jstickynote/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Site Officiel : <a href="http://www.tympanus.net/jstickynote/" rel="nofollow">http://www.tympanus.net/jstickynote/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-1265</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Fri, 27 Nov 2009 01:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-1265</guid>
		<description>This is lovely.  I have one question, though ... what if the page doesn&#039;t contain a #content?  Is there a sensible default possible?</description>
		<content:encoded><![CDATA[<p>This is lovely.  I have one question, though &#8230; what if the page doesn&#8217;t contain a #content?  Is there a sensible default possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rene</title>
		<link>http://tympanus.net/codrops/2009/10/30/jstickynote-a-jquery-plugin-for-creating-sticky-notes/comment-page-1/#comment-1261</link>
		<dc:creator>rene</dc:creator>
		<pubDate>Thu, 26 Nov 2009 06:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=757#comment-1261</guid>
		<description>Hi! I like to learn more about this. I have to do a project on Scrum and the truth is not as able to do .... and do so with StickyNote ....

I hope you can help me ....... because my life depends on it

thanks in advance (my English is not very good because I&#039;m from Chile)

greetings!!</description>
		<content:encoded><![CDATA[<p>Hi! I like to learn more about this. I have to do a project on Scrum and the truth is not as able to do &#8230;. and do so with StickyNote &#8230;.</p>
<p>I hope you can help me &#8230;&#8230;. because my life depends on it</p>
<p>thanks in advance (my English is not very good because I&#8217;m from Chile)</p>
<p>greetings!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: tympanus.net @ 2010-07-30 02:24:39 -->