Hi Sam,

You're using the HTML 5 doctype with the xmlns attribute in the <html>  
tag. Is that intentional?

> <!DOCTYPE html>
> <html xmlns="http://www.w3.org/1999/xhtml";>

If you either remove the xmlns attribute ...

<!DOCTYPE html>
<html>

... or use the xhtml dtd ...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";>

... it appears to work just fine.



--Karl

____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Jan 14, 2009, at 3:07 PM, Sam Ruby wrote:

>
> Test case:
>
> http://intertwingly.net/stories/2009/01/14/test12.html
>
> http://intertwingly.net/stories/2009/01/14/test13.html
>
> - Sam Ruby
>
> >


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-dev@googlegroups.com
To unsubscribe from this group, send email to 
jquery-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to