Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialIan Mackenzie
11,062 PointsYouTube Video not displaying
I've added a YouTube video as per the instructions and trying to view on a Safari browser but it won't display?
Not sure why, can anyone help?
5 Answers
James Barnett
39,199 PointsProtocol-less URLs don't work without a web server, so in that case just add http: in front of the URL.
>
The main caveat to keep in mind when using the protocol-less reference is that it will fail on pages loaded via file:/// (i.e. HTML pages you load directly from disk to your browser). So, do be sure to include the http: protocol in the URL if you happen to be developing without a web server at all, but donβt worry about omitting it otherwise.
source: http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/
Shane Meikle
13,188 PointsWithout knowing the code you used to try and make it work, it would be hard to diagnose the issue.
Ian Mackenzie
11,062 PointsI was using embed code using old embed style and this was the code.
<object width="560" height="315"><param name="movie" value="//www.youtube.com/v/EjDMqr8PC7c?hl=en_GB&version=3&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="//www.youtube.com/v/EjDMqr8PC7c?hl=en_GB&version=3&rel=0" type="application/x-shockwave-flash" width="560" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>
Does it have something to do with viewing on a localhost as my browser pulled up the file I'm working on from my local system.
Jason Anello
Courses Plus Student 94,610 Pointshttps://teamtreehouse.com/forum/posting-code-to-the-forum
I'm not sure if you tried pasting in the code but the forums strip out html if you just paste it in. That link should help you with the correct way to post code.
Jason Anello
Courses Plus Student 94,610 PointsI think somebody else had this problem and it was because the url's didn't have the http: at the beginning.
Ian Mackenzie
11,062 PointsOk thanks.
Ian Mackenzie
11,062 PointsIan Mackenzie
11,062 PointsThanks James for your very clear explanation.