Validation W3C: problème ONFOCUS / ONBLUR

Fermé
dallap - 7 avril 2010 à 16:31
 dallap - 7 avril 2010 à 16:56
Bonjour,
j'essaye de valider mon site aux normes W3C en HTML Transitional 4.01 mais il me reste 2 erreurs que je ne peux résoudre:

there is no attribute "ONFOCUS"

        onfocus="AnnulerCacher();"


et

 there is no attribute "ONBLUR"
onblur="CacherDelai();">



voici le code concerné (c'est un menu horizontal que j'ai trouvé sur le net):


#  <!-- SOUS MENUS DU MENU 1 -->
# <ul id="ssmenu1" class="ssmenu"
# onmouseover="AnnulerCacher();"
# onmouseout="CacherDelai();"
# onfocus="AnnulerCacher();"
# onblur="CacherDelai();">
# <li>
# <a href="/news_info.php">News Informatique<span> ;</span></a>
# </li>
# <li>
# <a href="/news_insolite.php">News Insolite<span> ;</span></a>
# </li>
# </ul>


sur un validateur français j'ai trouvé que ONFOCUS et ONBRUR étaient interdit dans la balise UL mais je ne sais pas y remédier ...

si vous avez besoin du code complet demandez moi.

Auriez vous une idée?
merci!

2 réponses

bloodchecker Messages postés 339 Date d'inscription mercredi 2 juillet 2008 Statut Membre Dernière intervention 29 février 2012 35
7 avril 2010 à 16:46
si c'est que onfocus est interdit dans ul, met ul dans un div et met ton onfocus sur le div !
1
même problème:

L'attribut 'ONFOCUS' n'est pas autorisé dans la balise div. 
à la ligne 234 Position de l'erreur:  

onfocus="AnnulerCacher();" 


there is no attribute "ONFOCUS" 

        onfocus="AnnulerCacher();" 



You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead). 

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information. 

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
0