W3C HTML validator passes this:
....
<script type="text/javascript" src="foo.js">
<script type="text/javascript">
....script in here...
</script>
....
But as far as I can tell, the first script tag requires a </script>
close tag. Is the close tag required for valid markup? I know browsers
accept this, but that's not the question. Is it valid?
....
<script type="text/javascript" src="foo.js">
<script type="text/javascript">
....script in here...
</script>
....
But as far as I can tell, the first script tag requires a </script>
close tag. Is the close tag required for valid markup? I know browsers
accept this, but that's not the question. Is it valid?
Comment