I'm working on get my site validated in an attempt to iron out issues with it showing up incorrectly on IE, and I'm getting an error: document type does not allow element "script" here
. It's from me placing the <script>
tag within the <select>
tag on the javascript drop down menu form I have.
Is there any way to get this validated? Or any work arounds?
The site in question is Blue Devil Books
And the specific code snippit is:
<noscript>This site requires that Javascript is enabled on your browser!</noscript>
<select name="CLASS"><script type="text/javascript">dynlist.printOptions("CLASS")</script>
</select>
<select name="SEC"><script type="text/javascript">dynlist.printOptions("SEC")</script>
</select>
<input type="submit" value="Search" />
</form></div></div>