I am converting some of my HTML 4 webpages to XHTML.
For some reason XHTML does not allow the body tag to have the OnLoad attribute.
Also the onclick attribute is not valid for the submit button.
Any ideas on valid ways of converting HTML 4 to XHTML?
It still works, but the page will not validate.
Yours,
Dale Rose
For some reason XHTML does not allow the body tag to have the OnLoad attribute.
Code:
<body OnLoad="function()">
Also the onclick attribute is not valid for the submit button.
Code:
<input type="submit" name="submitbutton" onclick="validate();return returnVal;" value="Submit" />
Any ideas on valid ways of converting HTML 4 to XHTML?
It still works, but the page will not validate.
Yours,
Dale Rose