Reputation: 25807
Why does youtube etc use <object>
and not <iframe>
?
What are the advantages of object over iframe for this case?
Upvotes: 2
Views: 973
Reputation: 526743
iframe
s are for embedding other HTML pages within a page.
object
s are for embedding non-HTML content objects (like Flash) within a page.
Since YouTube is using Flash to play videos, it uses object
.
Upvotes: 13