hello I am using this on a site <form onSubmit="return validate(this);"> but I need to see about changing it or fixing it so it will validate XHTML 1.0 Transitional suggestions
oh joy, can't belive I missed that one LOL Many Thanks now... what about this Line 113 column 39: required attribute "action" not specified. <form onsubmit="return validate(this);"> The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element. Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
muahahahahaha I got it changed the onsubmit line to this <form name="validate3" method="post" action="return validate(this)" onsubmit="return validate(this);">