Rawstring
Rawstring

Reputation: 67

HTML Functions not working under SSL

I'm having trouble with my website and some background music using Youtube Embed snippet.

When I connect without SSL everything works fine, from JS to YT snippets. But when I use SSL, YT snippet doesn't work.

<embed height="1" src="http://www.youtube.com/v/-hIbRH1qcjU?autoplay=1" type="application/x-shockwave-flash" width="1" wmode="transparent">

Any ideas on how to solve this ?

Upvotes: 0

Views: 42

Answers (1)

Chris
Chris

Reputation: 4728

If you view the browser console you'll probably see a message about mixed content. You're including content that is http on a https site.

Just change the Youtube URL to be https and not http and I suspect it will work.

Upvotes: 1

Related Questions