nmc
nmc

Reputation: 8696

Embedded youtube video in IE9 not working

I'm trying to embed a youtube video on my site and it doesn't seem to be working in IE. Seems to work on with other browsers so far. In IE9, it displays an outline of a box where the video would be with a little red X in the top left corner.

I have tried Why does my embedded YouTube video work in Firefox, but not Internet Explorer? with no success.

Upvotes: 4

Views: 8520

Answers (2)

Nur Rony
Nur Rony

Reputation: 8083

recently i also faced same problem. but the following code works for me even on 64bit ie.

<iframe width="100%" height="100%" src="http://www.youtube.com/embed/'.$query_vars['v'].(($list)?'?list='.$list:'').'" frameborder="0" allowfullscreen></iframe>

where $query_vars['v'] is my video id and $list is the list id

You need to add embeded version of url when you integrate youtube video.

Upvotes: 0

Haphazard
Haphazard

Reputation: 10948

Are you using 64 bit IE9? According to Adobe, they don't support it yet. There's nothing that you can do to fix it at this point.

Upvotes: 8

Related Questions