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 trialShariq Shaikh
13,945 PointsEmbedded Elements: video not displaying
Using the old embedded code, chrome doesn't seem to recognize there should be an embedded element on the page, and when I use the modern embedded code, chrome attempts to link to it and then displays it as broken, I copied the code exactly as was instructed by the video into my text editor. Any suggestions on how to make the embedded object run properly?
Shariq Shaikh
13,945 Points<!doctype html> <html lang="e"> <head> <meta charset="utf-8"> <title>My page</title> </head> <body>
<object width="560" height="315">
<param name="movie" value="//www.youtube.com/v/eeHJoxhT8Yw?hl=en_US&version=3&rel=0"></param>
<param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>
<embed src="//www.youtube.com/v/eeHJoxhT8Yw?hl=en_US&version=3&rel=0" type="application/x-shockwave-flash" width="560" height="315" allowscriptaccess="always" allowfullscreen="true"></embed>
</object>
</body>
</html>
1 Answer
Mark Berg
3,860 PointsAre you using 'TextEdit' for your code? I was having the same issue and tested it out via Plunker and the video shows up there. Not sure the reasoning why it wont show from a textedit file.
Andrew Shook
31,709 PointsAndrew Shook
31,709 PointsIt would help to see your html.