diff options
Diffstat (limited to 'template-common/tooltipfix.htc')
-rw-r--r-- | template-common/tooltipfix.htc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/template-common/tooltipfix.htc b/template-common/tooltipfix.htc new file mode 100644 index 000000000..4ce943af1 --- /dev/null +++ b/template-common/tooltipfix.htc @@ -0,0 +1,31 @@ +<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> + |