<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>UH.LEE.KA &#187; Coda</title>
	<atom:link href="http://www.uhleeka.com/blog/tag/coda/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uhleeka.com/blog</link>
	<description>If you think nobody cares about you, try missing a few car payments.</description>
	<lastBuildDate>Wed, 25 Aug 2010 01:35:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>bubbletip! A jQuery Coda-style bubble tooltip plugin</title>
		<link>http://www.uhleeka.com/blog/2009/11/bubbletip/</link>
		<comments>http://www.uhleeka.com/blog/2009/11/bubbletip/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 02:26:46 +0000</pubDate>
		<dc:creator>uhleeka</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[bubbletip]]></category>
		<category><![CDATA[Coda]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ToolTip]]></category>

		<guid isPermaLink="false">http://www.uhleeka.com/blog/?p=436</guid>
		<description><![CDATA[Download http://code.google.com/p/bubbletip/downloads/list Demo page http://uhleeka.com/demo/bubbletip/ Discuss http://groups.google.com/group/bubbletip Features multiple tips on a page multiple tips per jQuery element tips open outward in four directions: up down left right tips can be: anchored to the triggering jQuery element absolutely positioned opened at the current mouse coordinates anchored to a specified jQuery element IE png transparency is [...]]]></description>
			<content:encoded><![CDATA[<h4>Download</h4>
<p><a href="http://code.google.com/p/bubbletip/downloads/list">http://code.google.com/p/bubbletip/downloads/list</a></p>
<h4>Demo page</h4>
<p><a href="http://uhleeka.com/demo/bubbletip/">http://uhleeka.com/demo/bubbletip/</a></p>
<h4>Discuss</h4>
<p><a href="http://groups.google.com/group/bubbletip">http://groups.google.com/group/bubbletip</a></p>
<h4>Features</h4>
<ul>
<li>multiple tips on a page</li>
<li>multiple tips per jQuery element</li>
<li>tips open outward in four directions:
<ul>
<li>up</li>
<li>down</li>
<li>left</li>
<li>right</li>
</ul>
</li>
<li>tips can be:
<ul>
<li>anchored to the triggering jQuery element</li>
<li>absolutely positioned</li>
<li>opened at the current mouse coordinates</li>
<li>anchored to a specified jQuery element</li>
</ul>
</li>
<li>IE png transparency is handled via filters</li>
</ul>
<h4>Tested (lightly)</h4>
<ul>
<li>IE 6 on XP</li>
<li>IE 7 and 8 on Vista</li>
<li>Firefox 3.5 on Vista</li>
<li>Chrome 3.0 on Vista</li>
<li>Safari 3.2 on Vista</li>
</ul>
<h4>Examples</h4>
<p>MOUSEOVER to open a tooltip <a id="a1_up" href="#">above</a>, <a id="a1_down" href="#">below</a>, <a id="a1_left" href="#">to the left</a> or <a id="a1_right" href="#">to the right</a> of any element.</p>
<p>MOUSEOVER a <a id="a1_trigger" href="#">trigger element</a> to open a tooltip above and below a <a id="a1_target" href="#">target element</a>.<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script><script src="http://www.uhleeka.com/blog/wp-content/uploads/2009/11/jQuery.bubbletip-1.0.4.js" type="text/javascript"></script>
<link href="http://www.uhleeka.com/blog/wp-content/uploads/2009/11/bubbletip/bubbletip.css" rel="stylesheet" type="text/css" /><!--[if IE]>
<link href="http://www.uhleeka.com/blog/wp-content/uploads/2009/11/bubbletip/bubbletip-IE.css" rel="stylesheet" type="text/css" /><![endif]--><script type="text/javascript">
		$(document).ready(function() {
			$('#a1_up').bubbletip($('#tip1_up'));
			$('#a1_down').bubbletip($('#tip1_down'), {
				deltaDirection: 'down',
				deltaPosition: 50,
				offsetTop: 20
			});
			$('#a1_left').bubbletip($('#tip1_left'), {
				deltaDirection: 'left',
				animationDuration: 100,
				offsetLeft: -20
			});
			$('#a1_right').bubbletip($('#tip1_right'), { deltaDirection: 'right' });
			$('#a1_trigger').bubbletip($('#tip1_trigger1'), { positionAtElement: $('#a1_target') });
			$('#a1_trigger').bubbletip($('#tip1_trigger2'), {
				positionAtElement: $('#a1_target'),
				deltaDirection: 'down'
			});
		});
	</script><br />
<style type="text/css">
pre.tip
		{
			margin: 0px;
			padding: 5px;
			font-size: 0.9em;	
		}
</style>
<div style="display:none;">
<div id="tip1_up" style="display:none;">
<pre class="tip">{ deltaDirection: 'up' }</pre>
</div>
<div id="tip1_down" style="display:none;">
<pre class="tip">{
    deltaDirection: 'down',
    deltaPosition: 100,
    offsetTop: 10
}</pre>
</div>
<div id="tip1_left" style="display:none;">
<pre class="tip">{
    deltaDirection: 'left',
    animationDuration: 100,
    offsetLeft: -20
}</pre>
</div>
<div id="tip1_right" style="display:none;"><img src="http://www.uhleeka.com/blog/wp-content/uploads/2009/11/bubble.jpg" width="128" height="128" /></div>
<div id="tip1_trigger1" style="display:none;">
<pre class="tip">{
    deltaDirection: 'up',
    positionAtElement: $('#a1_target')
}</pre>
</div>
<div id="tip1_trigger2" style="display:none;">
<pre class="tip">{
    deltaDirection: 'down',
    positionAtElement: $('#a1_target')
}</pre>
</div>
</div>
<p><span id="more-436"></span><br />
<h4>Using it?</h4>
<p>If you enjoy using it, I&#8217;d love to hear about it.  Drop a comment with a link!</p>
<h4>Credit</h4>
<p>bubbletip was inspired by <a href="http://jqueryfordesigners.com/coda-popup-bubbles/" rel="nofollow">http://jqueryfordesigners.com/coda-popup-bubbles/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uhleeka.com/blog/2009/11/bubbletip/feed/</wfw:commentRss>
		<slash:comments>99</slash:comments>
		</item>
	</channel>
</rss>

