Tagged Questions
XHTML5 is an unofficial term to refer to the XHTML serialization of HTML5.
20
votes
2answers
6k views
What differences are expected of XHTML5 versus HTML5?
What differences are expected of XHTML5 versus HTML5? I understand that XHTML5 is the XML form of the language and HTML5 is the SGML form of the language, which means obvious minor syntax ...
16
votes
3answers
2k views
Should I use <![CDATA[ in HTML5?
I'm pretty sure the <![CDATA[ tags need to be used in XHTML5, but what about HTML5? Or correct me if I don't need to use them in either?
5
votes
2answers
644 views
XHTML5 and HTML4 character entities
Does XHTML5 support character entities such as and —. At work we can require specific software to access the admin side of the site, and people are demanding multi-file-upload. ...
5
votes
3answers
1k views
Where can I find sample XHTML5 source codes?
Where can I find sample *X*HTML 5 pages? I mainly want to know if it is possible to mix and match XHTML 5 with other XML languages just like XHTML 1 or not. For example is something like this valid in ...
3
votes
1answer
72 views
JavaScript Method `createElement` (Potentially) Generates Invalid XHTML [closed]
Possible Duplicate:
How to create xhtml elements with javascript
Creating a <br /> with javascript createElement?
I'm working with the programmatic generation of forms with ...
2
votes
1answer
103 views
Extending HTML5 video element with XSLT
I've created some markup/css and JavaScript for a custom UI to be used with the HTML5 <video> tag and would like to use XSLT to replace the video elements in my web pages with it.
Here is an ...
2
votes
1answer
72 views
How would I best mark this up in HTML5?
I went to this site: http://www.ignitionmedia.com.au/ and on the front page below the banner is 'WEB DESIGN' , 'WEB DEVELOPMENT' & 'WEBSITE PROMOTION'
I was wondering what would be the best ...
2
votes
1answer
179 views
Can someone explain what the xml:base attribute is used for in XHTML5?
I was wondering what does the xml:base attribute do and what are it's values in XHTML5. and does the xml:base attribute have any restrictions?
1
vote
3answers
67 views
What are the major differences in HTML 5 than previous versions? [closed]
I want to ask what are the major things which HTML 5 have but previous version does not.
Every answer would be appreciated.
Thanks
1
vote
0answers
77 views
Validating XHTML5 in PHP?
Background I have made the decision to serve my website as application/xhtml+xml to anyone who will accept it. I understand that there are consequences, which consequences I'm willing to accept.
...
1
vote
1answer
480 views
how to determine (using java code) if a web page is HTML5 (or older version of HTML)
I want to determine the version of HTML of a web page. How do I do this in a Google App Engine Java application? (Or even a desktop java application?)
1
vote
1answer
113 views
Best way to remove all but the 5 predefined HTML entities with PHP - for XHTML5 output
I'm currently experimenting with delivering XHTML5. Currently I deliver XHTML 1.1 Strict on the page I'm working on. That is I do for capable browsers. For those who don't accept XML encoded data I ...
1
vote
0answers
45 views
Valuable flair of MathOverflow, in XHTML mode
I would like to include the “piece of valuable flair™” of MathOverflow on my webpage.
Problem : I want my webpage to be XHTML5, i.e. served with the MIME type application/xhtml+xml and the script of ...
1
vote
1answer
257 views
Simple (Java, Javascript) start on Websockets
I would like to find a good (up-to-date) Java Trail type beginning tutorial on Websockets, with both Javascript client code and Java server code (that actually works). On the server side, if all I ...
1
vote
2answers
348 views
How do I force a browser to render a file XHTML5, the XML serialization of HTML5?
Is there anyway to force a browser to render XHTML5, the XML serialization of HTML5? Obviously, you can do it with server-side control of the mime-type, but is there a supported way to invoke the XML ...
1
vote
1answer
358 views
SVG in XHTML5: setting attributes with proper namespace
TL;DR Summary: Is it proper to use setAttribute instead of setAttributeNS for SVG elements?
Details:
Consider this SVG image embedded in XHTML5 that uses JavaScript to dynamically create and add ...
1
vote
2answers
345 views
Any issues with HTML5 namespaced elements (a no js solution for IE)
I recently came across this article which explains how to use HTML5 tags in IE without javascript. Basically you create a namespace globally and include it on each HTML5 tag. This way IE can recognise ...
1
vote
1answer
97 views
Can someone explain what the xml:space attribute is used for in XHTML5?
I was wondering what does the xml:space attribute do and what are it's values in XHTML5. and does the xml:space attribute have any restrictions?
1
vote
2answers
270 views
Canvas - Getting Image Position
I am using canvas,and I have this code -
var myCanvas = document.getElementById("myCanvas"),
ctx = null;
// Check for support - Feature Support and not Browser Support
if ( ...
1
vote
5answers
367 views
IE's XHTML Compatibility
I'm having a rather heated debate into IE's XHTML Compatibility. The only thing is, I'm unsure if the guy is trolling.
Essentially he claims that IE has absolutely no XHTML compatibility, and that a ...
1
vote
3answers
1k views
What's the proper way to add Facebook Connect and their xmlns to (X)HTML5?
I'm gleaning from this question [http://stackoverflow.com/questions/599334/facebook-connect-wont-validate] that using Facebook Connect and other facebook 'social widgets' just doesn't result in a ...
0
votes
0answers
43 views
Can built in ASP.net 4.0 webform controls output html 4?
We're looking to gear up and support html 5.
I believe that the built in web controls in asp.net 4.0 output xhtml.
From what I understand the built in controls do not yet ouput html5, however is it ...
0
votes
3answers
76 views
Is there an XHTML 5 validator?
Is there a validator specifically for XHTML 5, i.e. the XML serialization of HTML 5? The W3C validator supports the document types:
HTML 5 (experimental): which treats as valid various features that ...
0
votes
1answer
145 views
Why is my XHTML5 page causing IE's quirks mode?
Why is my XHTML5 page causing IE's quirks mode?
Here is the doctype and such, including PHP which sends the MIME type and <?:
<?php header('Content-Type: application/xml;charset=UTF-8'); ?>
...
0
votes
2answers
453 views
how to save files locally using html5
how can i download mp3 files locally and then play them using a html5 player , the files should be there even user quit the browser or even come back after couple of days.
Thanks
0
votes
1answer
246 views
XHTML 5 Prologue vs XHTML 1 Prologue
Are there any differences between prologues of XHTML 1 and XHTML 5? Is it possible to find out whether a document is XHTML 1 or XHTML 5 simply by looking at its prologue?
0
votes
6answers
1k views
How do you set up your web server & document's html to correctly serve HTML5 documents?
Maybe I'm an idiot but I don't quite get what goes in the header of my HTML to use XHTML w/ HTML5. Is this still good and we just add the HTML5 tags?:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...