I'm using this (jQuery) to replace all <br>s with <br /> to clear out validation errors:
$("<br>").replaceAll("<br />");
but it doesn't reduce any validation errors. Does validator check the original source?
|
3
|
I'm using this (jQuery) to replace all
but it doesn't reduce any validation errors. Does validator check the original source?
|
||||||||
|
|
|
There is no reason to do this. XHTML is dead. Switch your doctype to html 5 and go back to happily using unclosed tags:
|
||||||||||
|
|
|
Validators do not run javascript. They parse the HTML and compare it to the schema for the declared doctype. You will need to replace the |
||
|
|
|
|
JQuery will only fire after the document has been rendered. The process of the page loading will happen like the following
I would recommend just doing a site-wide find and replace on all |
|||
|
|
|
first, as has been said the validators check the html file, and does not run anything.
beside, if you want to the html to be valid, there much more than |
||
|
|
|
|
JQuery runs on the client. You must change your source code with basic replace command on notepad++ for instance. |
||
|
|
|
|
The HTML is parsed into the DOM model (step 3 in Gary's post), where You can see this for yourself if you use
Load it in a browser and click on it. On IE all three variants show up as |
|||
|
|