Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

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