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

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

link|improve this question

Why do you think it should use an <iframe>? – ChrisF Jul 3 '10 at 23:16
10  
I dont think, I beginer. – Yosef Jul 3 '10 at 23:19
1  
*ROFL*... Of course. Beginners don't think. – Rotsor Jul 4 '10 at 0:33
feedback

1 Answer

up vote 12 down vote accepted
  • 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.

link|improve this answer
You can also embed HTML content with object... – webjunkie Apr 12 at 12:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.