javascript - jQuery UI, iFrame, Blue Image Border In IE(9) -


right now, have jquery ui pop-up dialog reads external page. page reads external has video via flowplayer.

i'm using iframe embed video in first:

<iframe id="iframedonkey" width="100%" height="496" src="../../../../video/donkey-2009-02-23.html" frameborder="0"></iframe> 

to control border, css:

iframe {  border: 0px; } 

html (all aforementioned pages):

<style> img { border:0 } </style> 

but still see blue border around video preview picture in internet explorer.

any suggestions please?

i can't test this, had similar problem in earlier versions of ie , fixed it:

img  {    border-style:none; } 

Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -