|
Posted by BootNic on 03/25/07 05:06
> Greg N. <yodel_dodel@yahoo.com> wrote:
> news: eu1bgb$5uv$1@online.de
> I'm incorporating GoogleMaps in one of my pages
> http://hothaus.de/greg-tour-2006/route.htm
> This requires XHTML to work properly on IE. Also, it requires an
> <html> tag like this:
>
> <html xmlns="http://www.w3.org/1999/xhtml"
> xmlns:v="urn:schemas-microsoft-com:vml">
>
> I'm not quite sure about the syntax of this, but I have copied this
> from Google's boilerplate code. Anyway, it's required, and the page
> works. That HTML tag does not validate, though. The error message
> says:
>
> "Error Line 4 column 51: there is no attribute "xmlns:v"."
>
> Can I do anything about it? Should I ignore it?
Conditional comments may pacify a validity check.
<!--[if IE]>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v=
"urn:schemas-microsoft-com:vml">
<![endif]-->
<!--[if !IE]> <-->
<html xmlns="http://www.w3.org/1999/xhtml">
<!--> <![endif]-->
--
BootNic Sunday, March 25, 2007 1:05 AM
Good habits result from resisting temptation.
*Ancient Proverb*
[Back to original message]
|