Darren
08-18-2008, 11:45 PM
Ok, the <abbr> tag isn't recognized by IE. The simplest fix seems to be to specify a namespace for the <html> tag as follows:
<html xmlns:html="http://www.w3.org/1999/xhtml">
and then generate the <abbr> tags like this:
<html:abbr title="pounds">lbs.</abbr>
I found this solution here at coding forums at the following (kinda old) link:
http://codingforums.com/archive/index.php?t-49227.html
Well, my problem now is that (as stated in the above mentioned link) the W3C validator (http://validator.w3.org/) won't validate this code. I was hoping that since a couple years have passed, maybe there is a new, improved solution to either the <abbr> problem, or in how to get the validator to accept it.
Thanks in advance,
Darren
<html xmlns:html="http://www.w3.org/1999/xhtml">
and then generate the <abbr> tags like this:
<html:abbr title="pounds">lbs.</abbr>
I found this solution here at coding forums at the following (kinda old) link:
http://codingforums.com/archive/index.php?t-49227.html
Well, my problem now is that (as stated in the above mentioned link) the W3C validator (http://validator.w3.org/) won't validate this code. I was hoping that since a couple years have passed, maybe there is a new, improved solution to either the <abbr> problem, or in how to get the validator to accept it.
Thanks in advance,
Darren