code changed when switching between normal/ html view in internet explorer when <noscript> is used

  •  08-20-2010, 3:31 AM

    code changed when switching between normal/ html view in internet explorer when <noscript> is used


    i am trying to insert an <object> under <noscript>
     
    1. <noscript>  
    2. <object width="640" height="385">  
    3. <param name="movie" value="http://www.youtube.com/v/66TuSJo4dZM?fs=1&amp;hl=en_US"></param>  
    4. <param name="allowFullScreen" value="true"></param>  
    5. <param name="allowscriptaccess" value="always"></param>  
    6. <embed src="http://www.youtube.com/v/66TuSJo4dZM?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>  
    7. </object>  
    8. </noscript>  
     
    when i switched to normal view and back to html view, the code changed to,
     
    1. <noscript>  
    2. <object width="640" height="385">  
    3. <param name="movie" value="http://www.youtube.com/v/66TuSJo4dZM?fs=1&amp;hl=en_US"/></param>  
    4. <param name="allowFullScreen" value="true"/></param>  
    5. <param name="allowscriptaccess" value="always"/></param>  
    6. <embed src="http://www.youtube.com/v/66TuSJo4dZM?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>  
    7.     </object>  
    8.     </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
     
     

     
View Complete Thread