Hi Matthew,
I had a similar problem and M. Alsup suggested I download an older version of the JW FLV (v3.8; current version is v4.3) player and the error ("object expected" from IE's script debugger) went away. Hope this helps On Mar 23, 8:09 am, "matthew.ni...@googlemail.com" <matthew.ni...@googlemail.com> wrote: > I'm not sure if this is a problem with the media plugin (malsup.com) > or with swfobject, but in IE only, and only with flash content, there > is a runtime error when the <a> tags are inside <p> tags. So this > below will work for the .wmv file but fall down on the flv. > > <p><a class="video" href="video/secondary-assessment-effective- > questioning.wmv">Effective > Questioning (from Teachers' TV)</a></p> > <p><a href="video/test-flv.flv" class="video">Test flv video</a></p> > > The jquery is simply: > > $(document).ready(function() { > $('.video').media( { width: 320, height: 260, autoplay: false, > flashvars: { skin: > 'video/snel-skin.swf' } > } ); > $('.audio').media( { width: 320, height: 100, autoplay: false, > flashvars: { skin: > 'video/snel-skin.swf' } > } ); > > }); > > Any ideas? > > Matthew