rxd8s
20-03-2009, 10:22
Salve e mi scuso fin da ora se ho sbagliato sezione :D
Ho questo codicillo:
<div id="twitter_div">
<h2 style="display: none;" >Twitter Updates</h2>
<ul id="twitter_update_list"></ul>
</div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/USER.json?callback=twitterCallback2&count=10"></script>
PROBLEMA:
Il validator HTML mi da questo errore:
end tag for "ul" which is not finished. <ul id="twitter_update_list"></ul>
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
Volevo sapere come risolvere, questo è uno scriptino per richiamare gli ultimi statuses di Twitter ed è l'unico errore che mi da il validator in tutto il sito, alché mi girano un pò le scatole ;)
Vi ringrazio infinitamente da subito...
Ho questo codicillo:
<div id="twitter_div">
<h2 style="display: none;" >Twitter Updates</h2>
<ul id="twitter_update_list"></ul>
</div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/USER.json?callback=twitterCallback2&count=10"></script>
PROBLEMA:
Il validator HTML mi da questo errore:
end tag for "ul" which is not finished. <ul id="twitter_update_list"></ul>
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
Volevo sapere come risolvere, questo è uno scriptino per richiamare gli ultimi statuses di Twitter ed è l'unico errore che mi da il validator in tutto il sito, alché mi girano un pò le scatole ;)
Vi ringrazio infinitamente da subito...