jQuery shadowbox video not working in IE7
The shadowbox video plugin is not working in IE7 although it works fine in Firefox and Safari.
Any comments would be really appreciated.
Site:
http://www.carolinedawes.com.au/update/abc-gardening-australia.html
HTML:
<a href="m/abc-gardening-australia-caroline-dawes.mov" rel="shadowbox;height=272;width=480">
<img src="i/abc-gardening-australia-caroline-dawes-gardening-adelaide.jpg" alt="caroline dawes" />
</a>
Javascript:
<script type="text/javascript">
Shadowbox.init({
开发者_Python百科 players: ["qt"]
});
</script>
I know this is a very old question but from what it seems like you might be having a problem with IE's Dom:ready
event order which Voyta answers quite nicely here: Shadowbox not working in IE
Hope this helps anyone else who's having this problem.
精彩评论