Jump to content

Andynic

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Andynic

  1. I am using the onpaste even in an <input> tag.

     

    According to the W3 website, this is a valid tag. (http://www.w3schools.com/jsref/event_onpaste.asp)

     

    Yet when I pass the html through the W3 html validator, I receive this error:

    ================

    Line 287, Column 26: there is no attribute "onpaste" onpaste="return false;"

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

    =================

    This is the <input> tag:

    =================

    <p>Uw e-mailadres herhalen</p> <p><input class="tekstopmaak" type="text" name="contactmailadresHerhalen" id="contactmailadresHerhalen" size="40" maxlength="50"onpaste="return false;"onblur="validateContactMailadresHeralen('contactMailadresHerhalen');" value="" /></p>

    ===================

    This is the page's heading:

    ===================

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    ===================

     

    In spite of the error, it works as expected, but why does the validator produce the error on a W3 documented event?

     

    Thanks for your help,

    Andynic

     

  2. Thanks. That was it.
    Probelm solved:
    mismatch in <header> of the "comment" tokens <!-- ... //--> between <script> and </script> tags:
    probelm code:
    <script type="text/javascript">
    <!--
    javascript functions....
    -->
    </script>
    Corrected:
    <script type="text/javascript">
    <!--
    javascript functions....
    //-->
    </script>
    andynic
  3. Hi,
    Does anyone have any idea why the W3 validation service returns the error shown below on this comment line?/* Set the values in the <img> tag so the user can see a mini-sample of what was selected */Error:=====Line 219, Column 40: required attribute "src" not specified… /* Set the values in the <img> tag so the user can see a mini-sample …✉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>.=====I've tried /* */ to enclose the comment and also //Thanks for your help.andynic

     

×
×
  • Create New...