Reputation: 4667
I have a number of fancyboxes on a page (one in each repeateritem) which show inline flash when a button in the appropriate repeater is pressed.
In Internet Explorer the fancyboxes open correctly and show the inline flash.
However in Firefox when opening they open the inline flash in a new tab?? Anyone experienced this issue?
-- Lee
Upvotes: 1
Views: 2896
Reputation: 4667
I eventually managed to get it working.
Not entirely sure how but here are some steps i did..
document.write('<object>....</object')
That is..
<object width="560" height="340">
<param name="movie" value="http://www.youtube.com/v/M-cIjPOJdFM&hl=en&fs=1&"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/M-cIjPOJdFM&hl=en&fs=1&"
type="application/x-shockwave-flash"
allowscriptaccess="always"
allowfullscreen="true"
width="560"
height="340">
</embed>
</object>
Yeah! Yeah! Yeah! Working!!.
-- Lee
Upvotes: 2