<?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: Fading JavaScript Tooltips 2kb</title>
	<atom:link href="http://www.scriptiny.com/2008/06/javascript-tooltip/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptiny.com/2008/06/javascript-tooltip/</link>
	<description>This web development blog features fresh articles on JavaScript, AJAX, CSS, XHTML, PHP, Photoshop and more.</description>
	<lastBuildDate>Wed, 16 May 2012 10:11:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Hgboyle</title>
		<link>http://www.scriptiny.com/2008/06/javascript-tooltip/#comment-13452</link>
		<dc:creator>Hgboyle</dc:creator>
		<pubDate>Thu, 05 Apr 2012 15:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=56#comment-13452</guid>
		<description>Has anyone sorted out the issue with scrolling on IE. If you scroll down the tooltips remain where there are!</description>
		<content:encoded><![CDATA[<p>Has anyone sorted out the issue with scrolling on IE. If you scroll down the tooltips remain where there are!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nestor Peña</title>
		<link>http://www.scriptiny.com/2008/06/javascript-tooltip/#comment-12503</link>
		<dc:creator>Nestor Peña</dc:creator>
		<pubDate>Thu, 09 Jun 2011 05:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=56#comment-12503</guid>
		<description>Hi Michael and thanks,

I have a problem with this script when I use it over with the sortable script as the tooltip appears behind the table with sortable script, as I can make it appear on the table?</description>
		<content:encoded><![CDATA[<p>Hi Michael and thanks,</p>
<p>I have a problem with this script when I use it over with the sortable script as the tooltip appears behind the table with sortable script, as I can make it appear on the table?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marie</title>
		<link>http://www.scriptiny.com/2008/06/javascript-tooltip/#comment-12391</link>
		<dc:creator>Marie</dc:creator>
		<pubDate>Wed, 04 May 2011 15:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=56#comment-12391</guid>
		<description>Is there a way to not have the tooltip follow the cursor?
</description>
		<content:encoded><![CDATA[<p>Is there a way to not have the tooltip follow the cursor?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 制作メモ &#8211; 簡単ツールチップ &#8211; NonTitle</title>
		<link>http://www.scriptiny.com/2008/06/javascript-tooltip/#comment-12171</link>
		<dc:creator>制作メモ &#8211; 簡単ツールチップ &#8211; NonTitle</dc:creator>
		<pubDate>Tue, 22 Mar 2011 11:52:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=56#comment-12171</guid>
		<description>[...] 参考サイト [...]</description>
		<content:encoded><![CDATA[<p>[...] 参考サイト [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jez</title>
		<link>http://www.scriptiny.com/2008/06/javascript-tooltip/#comment-10808</link>
		<dc:creator>Jez</dc:creator>
		<pubDate>Sat, 16 Jan 2010 22:32:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=56#comment-10808</guid>
		<description>Hello and thanks
I added support for automate this on span-elements with a specific class name during the page onload:

//Page
&lt;span class=&quot;ToolTip&quot;&gt;Info text goes here...&lt;/span&gt;
&lt;span class=&quot;ToolTip&quot;&gt;Another info text goes here...&lt;/span&gt;

//CSS
.ToolTip {cursor:help; width:16px; height:16px;display:block;background:url(images/help.png);font-size:0%;line-height:1px;overflow:hidden;}

//JS
window.onload = function () {
					var myArray = getElementsByClassName(document, &quot;span&quot;, &quot;ToolTip&quot;);
					for ( var i=0, len=myArray.length; i&lt;len; ++i ){
					myArray[i].onmouseover = function () { 
						tooltip.show(this.innerHTML);
						};
					myArray[i].onmouseout = function () { 
						tooltip.hide();
						};
					}
			};
			
function getElementsByClassName(oElm, strTagName, strClassName){
	var arrElements = (strTagName == &quot;*&quot; &amp;&amp; oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
	var arrReturnElements = new Array();
	strClassName = strClassName.replace(/\-/g, &quot;\\-&quot;);
	var oRegExp = new RegExp(&quot;(^&#124;\\s)&quot; + strClassName + &quot;(\\s&#124;$)&quot;);
	var oElement;
	for(var i=0; i&lt;arrElements.length; i++){
		oElement = arrElements[i];
		if(oRegExp.test(oElement.className)){
			arrReturnElements.push(oElement);
		}
	}
	return (arrReturnElements)
};</description>
		<content:encoded><![CDATA[<p>Hello and thanks<br />
I added support for automate this on span-elements with a specific class name during the page onload:</p>
<p>//Page<br />
&lt;span class=&quot;ToolTip&quot;&gt;Info text goes here&#8230;&lt;/span&gt;<br />
&lt;span class=&quot;ToolTip&quot;&gt;Another info text goes here&#8230;&lt;/span&gt;</p>
<p>//CSS<br />
.ToolTip {cursor:help; width:16px; height:16px;display:block;background:url(images/help.png);font-size:0%;line-height:1px;overflow:hidden;}</p>
<p>//JS<br />
window.onload = function () {<br />
					var myArray = getElementsByClassName(document, &quot;span&quot;, &quot;ToolTip&quot;);<br />
					for ( var i=0, len=myArray.length; i&lt;len; ++i ){<br />
					myArray[i].onmouseover = function () {<br />
						tooltip.show(this.innerHTML);<br />
						};<br />
					myArray[i].onmouseout = function () {<br />
						tooltip.hide();<br />
						};<br />
					}<br />
			};</p>
<p>function getElementsByClassName(oElm, strTagName, strClassName){<br />
	var arrElements = (strTagName == &quot;*&quot; &amp;&amp; oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);<br />
	var arrReturnElements = new Array();<br />
	strClassName = strClassName.replace(/\-/g, &quot;\\-&quot;);<br />
	var oRegExp = new RegExp(&quot;(^|\\s)&quot; + strClassName + &quot;(\\s|$)&quot;);<br />
	var oElement;<br />
	for(var i=0; i&lt;arrElements.length; i++){<br />
		oElement = arrElements[i];<br />
		if(oRegExp.test(oElement.className)){<br />
			arrReturnElements.push(oElement);<br />
		}<br />
	}<br />
	return (arrReturnElements)<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Star Config Web Design</title>
		<link>http://www.scriptiny.com/2008/06/javascript-tooltip/#comment-10770</link>
		<dc:creator>Star Config Web Design</dc:creator>
		<pubDate>Sat, 09 Jan 2010 03:22:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=56#comment-10770</guid>
		<description>It is really great script, thank you for letting us know, looks good and easy to work with.</description>
		<content:encoded><![CDATA[<p>It is really great script, thank you for letting us know, looks good and easy to work with.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

