Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

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