Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
302 views

Dojo with application/xml+xhtml content-type

How can I get Dojo Dijits (1.5.0, currently) to work with XHTML as application/xml+xhtml? It works if sent as text/html, but application/xml+xhtml is required. This seems to be tied to ...
4
votes
5answers
1k views

Why isn't my document validating as XHTML 1.1 STRICT?

While target="_blank" is deprecated but, why W3C validator not giving ant error about this .you can paste and check this code validator? http://validator.w3.org/#validate_by_input <!DOCTYPE html ...
3
votes
3answers
780 views

Why target=“_blank” is not advisable to use with XHTML?

and It's validated in XHTML 1.1 and WCAG 2.0 Guidelines doesn't have any info about it's use? I know it's not valid in XHTML 1.0 strict but if many people using other ways like JavaScript, jquery, ...
2
votes
5answers
159 views

Can we use <a> directly in body, or it should always in any block level tag, see example ? xhtml

Which is right? <h2>heading 2</h2> <p><a href="#" target="_blank" title="Opens in a new window">link 1</a></p> <h2>heading 2 </h2> <p><a ...
1
vote
2answers
142 views

What are the differences between xhtml 1.0 strict and xhtml 1.1?

xhtml 1.1 is the evolution of xhtml 1.0, right? So i wonder what are the main differences between them. I've been using xhtml 1.0 strict for a while but, if there's an evolution, i'd like to know if ...
1
vote
1answer
2k views

Validation (CSS 2.1): 'behavior' is not a known CSS property name

i am using whatever:hover (http://www.xs4all.nl/~peterned/csshover.html) script to mimic the :hover selector in IE6. the suggested use it to attach it to the body element as IE6 behavior. but all my ...
1
vote
1answer
332 views

Replace a word in an XML file through StreamReader in XNA?

Okay, so this is sort of a hack...but it may have to be. I'm writing an app in XNA, which from my research into this problem apparently doesn't support XML version 1.1. I'm reading in the contents of ...
1
vote
4answers
111 views

Why is XHTML1.1 dated *before* XHTML1.0 ? What is the preferred XHTML today?

I'm not clear on the status of XHTML - v1.0 and v1.1. Can someone explain which is preferred at this point, and why? The specs from w3c say that XHTML 1.1 predates* XHTML 1.0, which is exactly ...
1
vote
1answer
333 views

XHTML 1.1 and xml:space attribute for script tag

In XHTML 1.0 using the xml:space attribute in a tag is valid, but in XHTML 1.1 it is not valid (using the same markup). I can't find it in the docs... Anyone can confirm it? Why it has been removed? ...
0
votes
1answer
111 views

JTidy and XHTML 1.1: is it possible?

I need to transform HTML into XHTML 1.1. I'm doing it in a Java program and so I decided to use JTidy. But if you tell JTidy to transform output in XHTML, you get an XHTML 1.0 not an XHTML 1.1. I've ...
0
votes
4answers
430 views

How to use a JavaScript variable as a XHTML attributes value?

I have tried: ... <script type="text/javascript"> var myVar = "some string"; </script> ... <input name="&{myVar};" ... /> ... But using FireFox the name is set to the ...
0
votes
1answer
81 views

What is the difference between these 2 doctype option on W3C HTML Validator page

http://validator.w3.org/#validate_by_input+with_options What options should i select in both if i want to check validity against XHTML 1.0 Strict and XHTML 1.1 there is no option for XHTML 1.1 ...
0
votes
2answers
61 views

Can I have an XHTML document with an XML declaration in standards mode for IE6?

I've been reading about this for the last half hour, and here's what I understand: IE 6 will render a page in standards mode if there's a valid DTD, but not if there are any comments above the DTD. ...
0
votes
4answers
986 views

<td align=“left” valign=“top”> why no error in w3c validator for this?

<td align="left" valign="top"> is it mean both are valid?
0
votes
3answers
233 views

Why Xhtml 1.1 goes into quirk mode?

i'm not using I'm only using this dtd as a first thing in a page? which has no problem to render strict mode. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
0
votes
5answers
211 views

Is XHTML 1.1 better then other doctypes?

This is stated on this page http://www.veiled-chameleon.com/xhtml11.html XHTML 1.1 allows for the easy creation of different display formats, such as a page format for printing, for wireless ...
0
votes
2answers
123 views

Attribute “lang” exists, but can not be used for this element.? W3C validation error

I'm using this dtd <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> ...
0
votes
2answers
142 views

IE8 fails at displaying the page completly

When I open my project, Only the background and a image not found item are shown, while the page is 100% xhtml 1.1 strict. The developer tools show IE stops rendering after the SVG logo... Firefox ...
0
votes
3answers
713 views

should we use frameset doctype if we use iframe?

Why iframe declared as non-standard thing? It has usefulness. Is it allow to use in xhtml 1.1 ? or should we use frameset doctype if we use iframe?
0
votes
2answers
2k views

How can I get the WordPress language_attributes function to return valid XHTML 1.1?

I have a WordPress template that contains the following element: <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes('xhtml'); ?>> This returns: <html ...