Bonjour,
J'ai ce passage dans un fichier .php et je souhaite y insérer un onmouseover et onmouseout:
Code :
- <a href="<?php echo $link;?>" target="_blank" rel="<?php $params->get('follow', 'nofollow');?>">
- <img src="<?php echo JUri::base(true).'/'.$images -> get('image_first');?>"
- title="<?php echo htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8')?>"
- </a>
|
J'ai donc ajouté ceci:
Code :
- <a href="<?php echo $link;?>" target="_blank" rel="<?php $params->get('follow', 'nofollow');?>">
- <img src="<?php echo JUri::base(true).'/'.$images -> get('image_first');?>"
- onmouseover="this.src='<?php echo JUri::base(true).'/'.$images -> get('image_second');?>'"
- onmouseout="this.src='<?php echo JUri::base(true).'/'.$images -> get('image_first');?>'"
- title="<?php echo htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8')?>"
- </a>
|
Cela fonctionne très bien pour les images, au passage de la souris, j'ai bien un changement d'image. Le problème est que cela m'ajoute le
Code :
- href="<?php echo $link;?>" target="_blank" rel="<?php $params->get('follow', 'nofollow');?>"
|
à chacune de mes <div> sous ce passage.
Any help ?
Merci