i am trying to insert an <object> under <noscript>
- <noscript>
- <object width="640" height="385">
- <param name="movie" value="http://www.youtube.com/v/66TuSJo4dZM?fs=1&hl=en_US"></param>
- <param name="allowFullScreen" value="true"></param>
- <param name="allowscriptaccess" value="always"></param>
- <embed src="http://www.youtube.com/v/66TuSJo4dZM?fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>
- </object>
- </noscript>
when i switched to normal view and back to html view, the code changed to,
- <noscript>
- <object width="640" height="385">
- <param name="movie" value="http://www.youtube.com/v/66TuSJo4dZM?fs=1&hl=en_US"/ /></param>
- <param name="allowFullScreen" value="true"/ /></param>
- <param name="allowscriptaccess" value="always"/ /></param>
- <embed src="http://www.youtube.com/v/66TuSJo4dZM?fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>
- </object>
- </noscript>
"/" has been added in every <param>, e.g.
<param name="allowFullScreen" value="true"></param>
becomes
<param name="allowFullScreen" value="true"/ /></param>
such problem does not exist when using the editor in firefox.
any idea or thought on this?
thanks in advance for the help.
ester