From Htmlpedia
Contents |
[edit]
HTML Element OBJECT
[edit]
Definition and Usage
The <object> tag allows to embed data. The type of data that is to be embedded is specified with the type attribute.
Images, videos, sounds, web pages and more can be embedded.
[edit]
Examples
<object height="100%" width="100%" type="image/jpeg" data="example.jpeg"></object>
Flash Movie:
<object height="100px" width="100px" type="application/x-shockwave-flash" data="http://www.example.com/path/file.swf"><param name="allowfullscreen" value="true"/></object>
[edit]
Attributes
[edit]
Optional attributes
type, data, declare, classid, codebase, codetype, archive, standby, width, height, usemap, name, tabindex
[edit]
Standard Attributes
[edit]
Event Attributes
onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup
[edit]
