[thelist] Is supressing the incorrect display of alt text in IE a good thing

VOLKAN ÖZÇELİK volkan.ozcelik at gmail.com
Sun Jan 22 13:57:29 CST 2006


in terms of accessibility?

with something like:

function clearAltText(){
/*I don't want microsux internet exploder to display alt text as a tooltip*/
if(document.all){
  var arImg=document.getElementsByTagName("img");
  var len=arImg.length;
  for(var i=0; i<len; i++)
     arImg[i].alt="";
}
}

Or can it have some side-effects?

My thoughts on it:
http://www.volkanozcelik.com/cre8/blog/2006/01/prevent-ie-treating-alt-attribute-as.html


Cheers,
--
Volkan Ozcelik
+>Yep! I'm blogging! : http://www.volkanozcelik.com/volkanozcelik/blog/
+> My projects/studies/trials/errors : http://www.sarmal.com/



More information about the thelist mailing list