Image name Property
Image Object
Definition and Usage
The name property sets or returns the name of an image.
Syntax
Browser Support

The name property is supported in all major browsers.
Example
Example
Return the name of an image:
<html>
<body>
<img id="compman" name="compman"
src="compman.gif" alt="Computerman" width="107" height="98">
<br>
<script>
document.write("Image name: ");
document.write(document.getElementById('compman').name);
</script>
</body>
</html>
Try it yourself »
Image Object
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]