XHTML 1.0 Strict is the XML equivalent to strict HTML 4.01, and includes elements and attributes that have not been marked deprecated in the HTML 4.01 specification.

learn more… | top users | synonyms

0
votes
1answer
18 views

HTML5 Doctype with strict

I want a strict but fully compatible html5 alternative to: <!doctype html> Basically I want to ensure the use of closing tags just to keep everything well readable, consistent and highlighted ...
1
vote
0answers
90 views

IE8: checkbox onclick not called when setting class to that

I have a code like this <input type='checkbox' class='rating' id="sample" onclick='checkboxcheck(parameters)' /> <label for="sample"></label> And CSS: ...
0
votes
1answer
38 views

PHP XHTML self closing input not working

I MUST do this page in XHTML1.0 Strict. I try for hours now to get an input tag like <input type="text" />. In the developer console of Firefox & Chrome it kicks out the slash. ...
-1
votes
1answer
35 views

why php script not catching the value from xhtml form input where the form is under div tag?

i am working with multiple form in one page. Basically i have a form in which there are some element and when a user select one of the category from drop-down list in the form, it adds addition ...
-2
votes
1answer
27 views

xslt generate xhtml 1.0 strict

I generate xhtml but validator (http://validator.w3.org/check) give me error "document type does not allow element "li" here; missing one of "ul", "ol" start-tag" Code is: <xsl:template ...
0
votes
0answers
33 views

Correct this javascript statement for XHTML 1 Strict

The following JavaScript was written for XHTML 1 Transitional, and the site has been moved to Strict. I'm a complete JavaScript novice, and have no idea how to correct this, could a JavaScript person ...
0
votes
1answer
59 views

javascript form remaining # of characters counter - modification requirement for xhtml strict validation

I used this javascript code in my page & then checked against w3c validator. I got 2 errors which are: there is no attribute "onKeyDown" there is no attribute "onKeyUp" I won't change my html ...
1
vote
2answers
38 views

XHTML validator that supports HTML5 elements

Sorry if this question doesn't fit StackOverflow. I'm developing HTML5 documents and need to validate them, but all validators I find seem to support either XHTML 1.0 Strict or HTML5. Is there any ...
0
votes
1answer
172 views

Remove Space Between div tags

I've read countless threads here now and I have been having no luck so far. I am trying to remove space between the divs on this page. The divs called "postarea" and "rightsidebar" should have the ...
0
votes
1answer
41 views

Embedding Google Maps with variable location in XHTML

I have a form getting parameters (method=GET, so the parameters are in the query string), and I have an Object with an embedded Google map. I want to make the embedded map dynamic, so that it will ...
1
vote
3answers
72 views

General entity“trk” is not defined and has no default entity error

I am trying to fix this validation problem: general entity"trk" not defined and no default entity and reference to entity "trk" for which no system identifier could be generated. Here is my ...
0
votes
0answers
16 views

xhtml 1.0 strict way to exclude some text from indexing by googlebot et al

I have some header/footer text on my web-pages that has no relevance to the meaning and content of the pages (for example, links to other versions of the pages on other sites). What would be an XHTML ...
1
vote
0answers
62 views

Good and simple approach to convert XHTML to Word Doc/Docx for MVC .ASP.NET Web application?

I am looking for a good and simple approach to convert a XHTML document into a Word Document within a ASP.NET MVC3 application. I am aware of a number of components like Syncfusion's DocIO and ...
0
votes
0answers
55 views

My issues with CSS attachment

while trying to attach my .css file to the site i want to style by entering i got this error: "xhtml 1.0 strict the tag is not permitted " And the site page gave an error to. Please what can i do to ...
0
votes
2answers
144 views

HTML/CSS - Inconsistent height of table cells in container with a fixed height

I have a table set up using HTML/CSS, and it is inside an LI element of a UL that is being turned into an accordion. The problem is, that when the LI element is animated to a specific height, it ...
-5
votes
1answer
46 views

How to make Four Columns fluid? [closed]

I've used your CSS code to make my site and I must say I TRULY enjoy working with it. There is only one problem, I've tried creating four fluid columns but have failed... the max you have are 3. ...
1
vote
0answers
35 views

!DOCTYPES the document type definition in more detail

I am researching this in detail and just need more specific answers on the various parts of a !DOCTYPE. In particular I would like a thorough break down of the parts of a !DOCTYPE that is strict. I ...
0
votes
1answer
78 views

How to make xhtml page follow strict syntax check?

I'm in the process of learning XHTML. If my understanding is correct, XHTML follows strict syntax. So I created this markup: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
0
votes
2answers
209 views

Can't link external css to XHTML stict document

I've just begun to use Aptana Studio 3. I used Aptana 2 in school and it worked fine. However in Studio 3, I can't get my external css to link to my XHTML document. I've tried using absolute path, the ...
2
votes
2answers
109 views

Why is xslt adding attributes itself in <copy>?

I use xslt 1.0 to do some manipulations on xhtml file. But I wanted to start from an identical copy. To my surprise xsl adds attributes that were absent in the original file. Please explain this ...
0
votes
1answer
214 views

HTML 4 Iframe with HTML5 content

So i have another question. I made a page with a xhtml1 doctype. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> And i put on ...
0
votes
1answer
71 views

HTML Issue on Internet Explorer only. It works fine on the rest of the browsers

On our website we use magento with a custom template. And the website is rendered correctly in all browsers, except for the checkout process. In Internet Explorer it looks weird. I have already ...
0
votes
0answers
84 views

Accessing ignored HTML tags in JavaScript

If we have a form tag without action attribute <form id='SomeForm'>..</form> in strict DOCTYPE, the renderer would ignore the form tag and F12 dev tools for IE and Firebug for FF will not ...
0
votes
4answers
122 views

gap between footer and contentwrapper that doesnt go away

I am working on the following website http://bestofdesigns.be/studioregenbogen/index.html. Can somebody please look at the css and tell me why the footer is not attached to the content and why there ...
0
votes
1answer
402 views

window.onload works fine with aspx page, but not in regular htm

could someone please explain to me why window.onload works fine in aspx, but not in xhtml? this window.onload example works fine in aspx: <script type="text/javascript"> //<![CDATA[ ...
0
votes
1answer
55 views

Collapse img tag when src path is wrong in XHTML1.0

I have an img tag. When the src path is wrong, I need to collapse the img tag. I can achieve this by using onerror in HTML4. However, XHTML1.0 is not allowing the onerror attribute. How can I ...
0
votes
2answers
472 views

Image cannot be loaded. Make sure the path is correct and the image exists

On my page I have a YouTube video's thumbnail as image, and I want to play the video using prettyPhoto after the user clicks on the image. How can I accomplish that? Here's my code for the image: ...
0
votes
2answers
521 views

How to fix w3.org validation error: There is no attribute “sid” or, Element “iframe” undefined?

i am trying to validate someone else's code here and they are using the xhtml1-strict DOCTYPE. i am almost there; except for few erors... There is no attribute "sid" Element "iframe" undefined ...
1
vote
1answer
174 views

css to work with dynamic 1, 2, 3 column layout based on if column exist with 1 set of rules

Note: In some situations elements with display:table-cell; have space at the top that is not padding, or margin and border-collapse:collapse; doesn't fix it either. You need to also use ...
1
vote
2answers
164 views

PHP XHTML Strict form is not working

I have tried for a very long time now to figure out, why this form is not working. It is not even displaying the error message if you don't type anything. I hope someone here can point out the ...
1
vote
1answer
458 views

How to let JSF render conform XHTML 1.0 strict?

I need to develop a web application which has to be compliant with "Stanca act" (Legge Stanca). I've used jsf2.0 (Mojarra ) + primefaces 3.2 so far but I have validation problems when I use ...
0
votes
1answer
202 views

SEO implications of invalid XML for Strict DOCTYPE

I'm working on some search engine optimizations on a variety of websites and have noticed that a number of them contain invalid XHTML and are using the XHTML 1.0 Strict DOCTYPE <!DOCTYPE html ...
0
votes
1answer
48 views

What defines IE 9's default compat and quirk modes?

Because I"m not specifying a compat mode in my html right now, different users seem to get different modes. When I run the MS Developers Toolbar I see that some users are in IE 9 compat mode, some are ...
1
vote
2answers
91 views

How to write a link with complex content inside it so that it will be valid and correct

w3 html validator will tell me that this is wrong: <a href="http://www.bla.com> <div>something</div> <ul> <li>first</li> ...
1
vote
4answers
690 views

How to fix form action issue in XHTML 1.0 Strict

I've got an issue with validating my code to XHTML 1.0 Strict. I've been using the w.3 validator to try and validate my page. It tells me Line 112, Column 24: required attribute "action" not ...
1
vote
2answers
1k views

iframes not valid in XHTML Strict

I am building a website with a Google Map, which by default generates this code: <iframe width="550" height="500" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" ...
1
vote
2answers
606 views

Issues with JavaScript and XHTML Strict Code

I have an issue with meeting XHTML Strict requirements for a class assignment. The class assignment says to use java script to generate a table, but only the array can be use in an external javascript ...
0
votes
1answer
192 views

Strict XHTML with MIME type “application/xhtml+xml”: AJAX / PHP's DOMDocument class fails

I have modeled an AJAX search after this example a long time ago. I have changed some things - the whole request process is handled now via jquery. But the PHP file which is requested is basically the ...
0
votes
2answers
245 views

XHTML Strict alternative to putting block elements inside an anchor

I'm trying to make a couple of DIVs clickable in its entirety. I tried this... <div id="features" class="threeSplit"> <div id="box1"> <a href="javascript:;"> ...
0
votes
1answer
53 views

What am I supposed to do in order to redirect an HTML form to a new tab under the strict DTD?

It seems the target attribute is not a part of the strict DTD. I guess this is because frames are deprecated. But what if my target is not another frame, but a new tab (target="_blank")? Is there a ...
1
vote
1answer
39 views

If there a valid way to change text styles within a hyperlink?

I am trying to validate my code as follows: <ul class="work"> <li> <a href="work1.html"> <img src="images/work_1.png" alt="Work 1 Logo" /> <h4>Lorem ipsum ...
1
vote
1answer
459 views

Is it possible to make a button call a JavaScript function in XHTML Strict 1.0?

In plain old HTML the following code will work: <input type="button" value="click" onClick="function()" /> However; in XHTML Strict 1.0 this code will not validate, saying that "there is no ...
0
votes
1answer
19 views

Since XHTML documents SHOULD be served as “application/xhtml+xml”, and the XML DOM document object has no “cookie”, what's the alternative?

Since XHTML documents SHOULD be served as "application/xhtml+xml", and the XML DOM document object has no "cookie" (among other missing features), what's the cross-platform alternative to using ...
0
votes
0answers
130 views

Support for XHTML documents?

Something funny happens when you serve an XHTML document as XHTML "application/xhtml+xml" as recommended. AJAX libraries, scripts, and styles seem to fall apart. jQuery's documentation for ...
3
votes
1answer
353 views

How to make tinyMCE content for ASP.Net MVC as XHTML strict?

How to make tinyMCE editor content of ASP.Net MVC page to XHTML strict?
0
votes
2answers
79 views

Enctype for XHTML Strict 1.0 Page

I have, for my own edification, constructed an XHTML Strict 1.0 page containing a form. I'd like for it to accept text/xml MIME-types only and so I've specified the accept attribute accordingly. ...
2
votes
1answer
428 views

PHP strip non-SGML characters from a string?

I've got nonstandard characters coming out of my database (due to line breaks). My HTML validator is complaining about them. Since my HTML validator is a direct extension of my ego, I'd like to ...
2
votes
2answers
524 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 ...
0
votes
1answer
251 views

libxslt's applyStylesheet() produces broken XHTML

I've got an XML data file that I'm applying an XSL stylesheet to, using libxslt in Python. Things are almost perfect, but every instance of <hr/> in the XSL file is being turned into <hr> ...
0
votes
2answers
138 views

xhtml custom attributes definition

If a defined custom attributes to input fields in an XHTML document are these then valid attributes? As if i validate the xhtml document with w3c validator then the validator marks them as invalid ...

1 2 3