Tutorials References Menu

HTML <object> name Attribute

❮ HTML <object> tag

Example

An <object> element with a name attribute:

<object data="pic_trulli.jpg" width="300" height="200" name="obj1"></object>
Try it Yourself »

Definition and Usage

The name attribute specifies the name of an <object> element.

The name attribute is used for referencing an <object> element in JavaScript (an alternative, is to reference it by using its id attribute).


Browser Support

Attribute
name Yes Yes Yes Yes Yes

Syntax

<object name="name">

Attribute Values

Value Description
name The name of the <object> element

❮ HTML <object> tag