I'm confused i've tried to validate an XHTML page and I get the following error.
yet I visited this link which clearly indicated it is an attribute of the form tag, can someone explain what is going on please.
also I have had to replace the "name" attribute to "id" does that mean i can no longer talk to the dom via "document.FORMNAME.fieldname.value=foo", and I will have to replace all those with document.getElementById('idname').value = foo"
I also had an anchor <a name="name"> to enable quick links within the page, but i get the following error
does the browser recognise <a id="name"> as the same, so if i put <a href="#name"> will it still jump to the right place?
thanks
1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
for this linethere is no attribute "target".
Code:
<form id="stationery" action="<tmpl_var NAME='url_to_cgi'>/stationery.cgi" method="post" target="_blank">
yet I visited this link which clearly indicated it is an attribute of the form tag, can someone explain what is going on please.
also I have had to replace the "name" attribute to "id" does that mean i can no longer talk to the dom via "document.FORMNAME.fieldname.value=foo", and I will have to replace all those with document.getElementById('idname').value = foo"
I also had an anchor <a name="name"> to enable quick links within the page, but i get the following error
there is no attribute "name".
does the browser recognise <a id="name"> as the same, so if i put <a href="#name"> will it still jump to the right place?
thanks
1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.