<?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: Bubble Point Tooltips with CSS3 &amp; jQuery</title>
	<atom:link href="http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Fri, 24 May 2013 18:52:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Chris Coyier</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-139890</link>
		<dc:creator>Chris Coyier</dc:creator>
		<pubDate>Fri, 06 Jan 2012 00:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-139890</guid>
		<description><![CDATA[That would be a nice feature. Not too hard actually, if you use jQuery UI for .postion() instead of native jQuery. .postion() has collision detection and will move what what you are positioning to be on screen.]]></description>
		<content:encoded><![CDATA[<p>That would be a nice feature. Not too hard actually, if you use jQuery UI for .postion() instead of native jQuery. .postion() has collision detection and will move what what you are positioning to be on screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-139888</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 06 Jan 2012 00:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-139888</guid>
		<description><![CDATA[That one doesn&#039;t reposition itself if theres no space in the screen... I&#039;m trying to make one but  I think this one is the most efficient and simple:
https://code.google.com/p/littletip/

Thanks for the post!]]></description>
		<content:encoded><![CDATA[<p>That one doesn&#8217;t reposition itself if theres no space in the screen&#8230; I&#8217;m trying to make one but  I think this one is the most efficient and simple:<br />
<a href="https://code.google.com/p/littletip/" rel="nofollow">https://code.google.com/p/littletip/</a></p>
<p>Thanks for the post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elixon</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-126816</link>
		<dc:creator>Elixon</dc:creator>
		<pubDate>Fri, 25 Nov 2011 15:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-126816</guid>
		<description><![CDATA[Or supply callback for the tooltip contents. Let user decide what goes in the tooltip - if rich text or plain text... I&#039;ve done it with my &lt;a href=&quot;http://www.webdevelopers.eu/jquery/tooltip&quot; rel=&quot;nofollow&quot;&gt;Elixon Tooltip&lt;/a&gt; and it is as universal as it can be... I can use it for so many things now...]]></description>
		<content:encoded><![CDATA[<p>Or supply callback for the tooltip contents. Let user decide what goes in the tooltip &#8211; if rich text or plain text&#8230; I&#8217;ve done it with my <a href="http://www.webdevelopers.eu/jquery/tooltip" rel="nofollow">Elixon Tooltip</a> and it is as universal as it can be&#8230; I can use it for so many things now&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Piechnick</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-126718</link>
		<dc:creator>Daniel Piechnick</dc:creator>
		<pubDate>Fri, 25 Nov 2011 07:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-126718</guid>
		<description><![CDATA[It&#039;s a lot of CSS for a little tooltip. I&#039;ve made tooltips in the past, but I always end up making them redundant, by rewriting my content,  and just explaining  things better. which is sad, because I really like tooltips. :P

Daniel Piechnick]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s a lot of CSS for a little tooltip. I&#8217;ve made tooltips in the past, but I always end up making them redundant, by rewriting my content,  and just explaining  things better. which is sad, because I really like tooltips. :P</p>
<p>Daniel Piechnick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tuomas Salo</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-126530</link>
		<dc:creator>Tuomas Salo</dc:creator>
		<pubDate>Thu, 24 Nov 2011 14:07:21 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-126530</guid>
		<description><![CDATA[Looks good, but is a bit problematic. The contents of the title attribute is normally plaintext, but this solution turns it into HTML - but not for everyone, since the plaintext title is used as a failover. So, if you want to have an ampersand in the title text, or maybe even a &lt;tag&gt;, what would you write to the title attribute?

Thus, this tooltip implementation is also a possible attack vector for XSS exploits. Imagine an application that lets users input some text for tooltips, say, image captions. Then the admin wants to fancify the interface with these tooltips. Whoops! Now the users can enter arbitrary HTML code.

My proposition: let the title attribute be plain text. Add another attribute, say data-fancy-html-title when HTML is needed.]]></description>
		<content:encoded><![CDATA[<p>Looks good, but is a bit problematic. The contents of the title attribute is normally plaintext, but this solution turns it into HTML &#8211; but not for everyone, since the plaintext title is used as a failover. So, if you want to have an ampersand in the title text, or maybe even a &lt;tag&gt;, what would you write to the title attribute?</p>
<p>Thus, this tooltip implementation is also a possible attack vector for XSS exploits. Imagine an application that lets users input some text for tooltips, say, image captions. Then the admin wants to fancify the interface with these tooltips. Whoops! Now the users can enter arbitrary HTML code.</p>
<p>My proposition: let the title attribute be plain text. Add another attribute, say data-fancy-html-title when HTML is needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-126142</link>
		<dc:creator>Ricardo</dc:creator>
		<pubDate>Wed, 23 Nov 2011 13:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-126142</guid>
		<description><![CDATA[Using a span inside of the a element, and positioning it as absolute and show it when hovered would be semantic right?]]></description>
		<content:encoded><![CDATA[<p>Using a span inside of the a element, and positioning it as absolute and show it when hovered would be semantic right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EstherH</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-126099</link>
		<dc:creator>EstherH</dc:creator>
		<pubDate>Wed, 23 Nov 2011 08:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-126099</guid>
		<description><![CDATA[you should update your browser... I think the latest FF is 8.0]]></description>
		<content:encoded><![CDATA[<p>you should update your browser&#8230; I think the latest FF is 8.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-125944</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 22 Nov 2011 20:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-125944</guid>
		<description><![CDATA[I was having trouble with the tooltips positioning relative to the wrap container.  Pulled my hair out trying to figure it out, played with &#039;relative&#039; and &#039;absolute&#039; all over the place.  I finally resorted to changing the &lt;code&gt;var linkPosition = $el.position();&lt;/code&gt; to &lt;code&gt;var linkPosition = $el.offset();&lt;/code&gt; even though I don&#039;t think this is recommended.

Also, can anyone tell me &lt;em&gt;why&lt;/em&gt; this doesn&#039;t work in IE8?  I added all the IE specific &#039;opacity&#039; rules, but still doesn&#039;t work at all.  It doesn&#039;t look like anything that unusual going on with the JS or CSS, so it can&#039;t be that difficult to at least make a crippled version work in IE8.]]></description>
		<content:encoded><![CDATA[<p>I was having trouble with the tooltips positioning relative to the wrap container.  Pulled my hair out trying to figure it out, played with &#8216;relative&#8217; and &#8216;absolute&#8217; all over the place.  I finally resorted to changing the <code>var linkPosition = $el.position();</code> to <code>var linkPosition = $el.offset();</code> even though I don&#8217;t think this is recommended.</p>
<p>Also, can anyone tell me <em>why</em> this doesn&#8217;t work in IE8?  I added all the IE specific &#8216;opacity&#8217; rules, but still doesn&#8217;t work at all.  It doesn&#8217;t look like anything that unusual going on with the JS or CSS, so it can&#8217;t be that difficult to at least make a crippled version work in IE8.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eva</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-125643</link>
		<dc:creator>Eva</dc:creator>
		<pubDate>Mon, 21 Nov 2011 23:51:52 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-125643</guid>
		<description><![CDATA[Awesome and very useful!

One question: Is it possible to prevent the tooltip from hovering out of the browser window.

THX!]]></description>
		<content:encoded><![CDATA[<p>Awesome and very useful!</p>
<p>One question: Is it possible to prevent the tooltip from hovering out of the browser window.</p>
<p>THX!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Coyier</title>
		<link>http://css-tricks.com/bubble-point-tooltips-with-css3-jquery/#comment-125512</link>
		<dc:creator>Chris Coyier</dc:creator>
		<pubDate>Mon, 21 Nov 2011 15:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=14950#comment-125512</guid>
		<description><![CDATA[It doesn&#039;t work at all in IE 8 and down, so use conditional comments to prevent the scripts from being loaded there (see early comment). 

Also read the section about Opera in the article. The problem is pointer-events. You can alter this yourself to move the &quot;hidden&quot; tooltip from sitting on top of the link to solve that problem. For instance, have it be above the link instead and float down and away instead of up and away.]]></description>
		<content:encoded><![CDATA[<p>It doesn&#8217;t work at all in IE 8 and down, so use conditional comments to prevent the scripts from being loaded there (see early comment). </p>
<p>Also read the section about Opera in the article. The problem is pointer-events. You can alter this yourself to move the &#8220;hidden&#8221; tooltip from sitting on top of the link to solve that problem. For instance, have it be above the link instead and float down and away instead of up and away.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-24 12:03:56 by W3 Total Cache -->