Framework as is works just fine but when I tried adding a <noscriipt> tag inside a block it returns an xhtml validation error.
The following code from w3schools returns a validation error:
<script type="text/javascript">
document.write("Hello World!")
</script>
<noscript>Your browser does not support JavaScript!</noscript>Any clue? Thanks.
Refer to this thread for more information.
Comments
Comment #1
andregriffin commentedTry replacing your doctype with HTML5. Don't worry, it degrades gracefully in all browsers (though who really care about IE6 at this point). You can code exactly as in XHTML 1.0 Strict.
Replace the beginning of your page.tpl up to the
<title>tag withComment #2
halloffame commentedIt worked great Andre'! Thanks.