<?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>Hozzászólás: Script.aculo.us Effect.Tooltip &#8211; lehet jobbat?</title>
	<atom:link href="http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/</link>
	<description>webfejlesztés.web2.xhtml.javascript.ajax.css.seo.lamp</description>
	<lastBuildDate>Mon, 13 Jun 2011 21:29:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>zsolti</title>
		<link>http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/comment-page-1/#comment-948</link>
		<dc:creator>zsolti</dc:creator>
		<pubDate>Sun, 09 Sep 2007 07:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/#comment-948</guid>
		<description>na. na! kössz!</description>
		<content:encoded><![CDATA[<p>na. na! kössz!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kow</title>
		<link>http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/comment-page-1/#comment-941</link>
		<dc:creator>Kow</dc:creator>
		<pubDate>Sat, 08 Sep 2007 23:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/#comment-941</guid>
		<description>Van egy ilyen:

http://www.nickstakenburg.com/projects/prototip/

Imádom :D</description>
		<content:encoded><![CDATA[<p>Van egy ilyen:</p>
<p><a href="http://www.nickstakenburg.com/projects/prototip/" rel="nofollow">http://www.nickstakenburg.com/projects/prototip/</a></p>
<p>Imádom <img src='http://www.dev2.hu/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Jaglan Beta</title>
		<link>http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/comment-page-1/#comment-638</link>
		<dc:creator>Jaglan Beta</dc:creator>
		<pubDate>Sat, 21 Jul 2007 13:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dev2.hu/2007/07/07/scriptaculous-effecttooltip-lehet-jobbat/#comment-638</guid>
		<description>szia
ebbe a problemaba kerultem en is, ezert irtam magamnak egy tooltip function-t. a megvalositas nem tul szep (uj vagyok), de mar hasznalhato. javitsatok, hasznaljatok egeszseggel.
// forma: &lt;a href=&quot;b.html&quot; rel=&quot;nofollow&quot;&gt;szoveg&lt;/a&gt;


function tooltip_init(_where){
	if (!$(&quot;tooltip&quot;)){
		var tooltipObj = document.createElement(&#039;div&#039;);
		tooltipObj.id=&quot;tooltip&quot;;
		document.body.appendChild(tooltipObj);
		$(&quot;tooltip&quot;).hide();
		$(&quot;tooltip&quot;).setOpacity(0.8);
	}
	$$(((_where)?_where:&quot;&quot;)+&quot; a[tooltip]&quot;).each(
		function(_obj){
			Event.observe(_obj,&quot;mouseover&quot;,function(_eve){
				$(&quot;tooltip&quot;).update(Event.findElement(_eve,&quot;a&quot;).getAttribute(&quot;tooltip&quot;));
				$(&quot;tooltip&quot;).show();
			});
			Event.observe(_obj,&quot;mousemove&quot;,function(_eve){
				$(&quot;tooltip&quot;).style.left=Event.pointerX(_eve)+10+&quot;px&quot;;
				$(&quot;tooltip&quot;).style.top=Event.pointerY(_eve)-$(&quot;tooltip&quot;).getHeight()-10+&quot;px&quot;;
			});
			Event.observe(_obj,&quot;mouseout&quot;,function(_eve){
				$(&quot;tooltip&quot;).hide();
			});		
		}
	);
}</description>
		<content:encoded><![CDATA[<p>szia<br />
ebbe a problemaba kerultem en is, ezert irtam magamnak egy tooltip function-t. a megvalositas nem tul szep (uj vagyok), de mar hasznalhato. javitsatok, hasznaljatok egeszseggel.<br />
// forma: <a href="b.html" rel="nofollow">szoveg</a></p>
<p>function tooltip_init(_where){<br />
	if (!$(&#8220;tooltip&#8221;)){<br />
		var tooltipObj = document.createElement(&#8216;div&#8217;);<br />
		tooltipObj.id=&#8221;tooltip&#8221;;<br />
		document.body.appendChild(tooltipObj);<br />
		$(&#8220;tooltip&#8221;).hide();<br />
		$(&#8220;tooltip&#8221;).setOpacity(0.8);<br />
	}<br />
	$$(((_where)?_where:&#8221;")+&#8221; a[tooltip]&#8220;).each(<br />
		function(_obj){<br />
			Event.observe(_obj,&#8221;mouseover&#8221;,function(_eve){<br />
				$(&#8220;tooltip&#8221;).update(Event.findElement(_eve,&#8221;a&#8221;).getAttribute(&#8220;tooltip&#8221;));<br />
				$(&#8220;tooltip&#8221;).show();<br />
			});<br />
			Event.observe(_obj,&#8221;mousemove&#8221;,function(_eve){<br />
				$(&#8220;tooltip&#8221;).style.left=Event.pointerX(_eve)+10+&#8221;px&#8221;;<br />
				$(&#8220;tooltip&#8221;).style.top=Event.pointerY(_eve)-$(&#8220;tooltip&#8221;).getHeight()-10+&#8221;px&#8221;;<br />
			});<br />
			Event.observe(_obj,&#8221;mouseout&#8221;,function(_eve){<br />
				$(&#8220;tooltip&#8221;).hide();<br />
			});<br />
		}<br />
	);<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

