piwigo/template-common/tooltipfix.htc
chrisaga 450ec6cfdf fix bug 204: IE doesn't dispaly the same text in tooltips (info-bulles) than other browsers
use a behaviour (.htc) to fix alt and title attribute when mouse is over IMG
	only for IMG in a link, others will not be fixed.

git-svn-id: http://piwigo.org/svn/trunk@1475 68402e56-0260-453c-a942-63ccdbb3a9ee
2006-07-15 15:26:51 +00:00

31 lines
523 B
Text

<public:attach event="onmouseover" onevent="montrer()" />
<public:attach event="onmouseout" onevent="cacher()" />
<script langage=javascript>
var thisImg = this;
var thisTitle = this.title;
var thisAlt = this.alt;
var thisA = this.parentNode;
var aTitle = thisA.title;
function montrer()
{
if (aTitle)
{
thisAlt=thisImg.alt;
thisImg.alt=aTitle;
thisImg.title=aTitle;
}
return;
}
function cacher() {
if (thisAlt)
{
thisImg.alt=thisAlt;
thisImg.title=thisTitle;
}
return;
}
</script>