I'm trying to pass the HTML validation (https://validator.w3.org/) of my code, but I've got the following problem:
there is no attribute "NAME"
<FORM name="formMenu" id="formMenu" action=...
I'm using JSF 1.2, and the tag that generates this part of code is the following:
<h:form id="formMenu" >
...
</h:form>
I've been reading about that error, and it seems that it's because you shouldn't use "name" in the form. The problem is that this one is rendered from the jsf h:form. Is there any way I can delete the "name" attribute?