[VE][65] Error Message Feedback

Hi,
I'm working to produce an HTL page w3c compliant, but when I validate it, the validator give to me thi error message:

Line 103, column 19: document type does not allow element "noscript" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag

<noscript>

The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element. 

One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>"). 



Above you can find a part of the page code:

<fieldset id="appartenenzaOrdine">
        <legend class="legend-dichiarazioni">
          <script type="text/javascript">
            <!--
              document.write('<a name=\"APPARTENENZA-AD-UN-ORDINE-PROFESSIONALE\" href=\"javascript:swap(\'appartenenzaOrdine\');\">APPARTENENZA AD UN ORDINE PROFESSIONALE</a>');
            -->
          </script>  
          <noscript>
            <a name="APPARTENENZA-AD-UN-ORDINE-PROFESSIONALE">APPARTENENZA AD UN ORDINE PROFESSIONALE</a>        
          </noscript>
        </legend>
        <div id="appartenenzaOrdineDiv" class="div-aperto">
          <div class="riga-check" id="appartenenzaOrdineCheck">
            <input class="input-check"  type="checkbox" onclick="controlla(this);" onkeypress="controlla(this);" name="appartenenzaOrdineCB" id="appartenenzaOrdineCB" value="appartenenzaOrdine" />
            <label class="label-check" for="appartenenzaOrdineCB">Abilita questa dichiarazione</label>
          </div>
          <div class="riga">
            <label class="label-grande" for="ordineAppartenenza">Ordine di appartenenza </label>
            <input class="input-grande" type="text"  name="ordineAppartenenza" id="ordineAppartenenza" value="[inserisci il nome dell'ordine]" onfocus="cambiaFont(this);" />
          </div>
        </div>
      </fieldset>

Can someone help me?



thanks

Luigi Caligiuri

Received on Monday, 2 August 2004 09:29:20 UTC