[jQuery] Flash movie not playing in IE6, but working fine in firefox & google chrome
Hi All,
I have used the swfobject.js file & its methods to play a flash movie
in my webpage. It works fine when I open the page in firefox & chrome
but does not work in IE-6.
Below is the code i used:
<script type="text/javascript" src="<%= request.getContextPath() %>/js/
swfobject.js"></script>
<script type="text/javascript">
function loadSWF(url) {
var flashvars = {
autostart: false,
thumb: "videos/call/FirstFrame.png",
thumbscale: 45
};
swfobject.embedSWF(url, "flashcontent", "440", "300",
"9.0.0","expressInstall.swf", flashvars);
}
</script>
<div id="flashcontent"></div>
Please help me on this.