views:

397

answers:

1

Why does youtube etc use <object> and not <iframe>?

What are the advantages of object over iframe for this case?

+11  A: 
  • iframes are for embedding other HTML pages within a page.

  • objects are for embedding non-HTML content objects (like Flash) within a page.

Since YouTube is using Flash to play videos, it uses object.

Amber