Okay, I just can't figure this one out.
After all the talk of validation, etc for websites I decided to run my new one,
www.footballweeklies.co.uk, through it and I keep getting the same error on all my pages
I have several <noscript> tags, obviously for browsers which don't support javascript.....inside these tags are embedded swf objects
However in the validation check it keeps coming up saying that the tags are invalid....and indeed i tried removing the script file to make it show the embedded object and it doesn't work
below is an example....can anyone help?
code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','194','height','210','movie','menu/dropmenu','quality','high' ); //end AC code
</script>
<noscript>
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="194" height="210">
<param name="movie" value="menu/dropmenu.swf" />
<param name="quality" value="high" />
</object>
</noscript>