files/en-us/web/api/htmlareaelement/interestforelement/index.md
{{ApiRef("HTML DOM")}}{{SeeCompatTable}}{{non-standard_header}}
The interestForElement property of the {{domxref("HTMLAreaElement")}} interface gets or sets the target element of an interest invoker, in cases where the associated {{htmlelement("area")}} element is specified as an interest invoker.
See Creating an interest invoker for more details.
An {{domxref("Element")}} object instance, or null if the associated <area> element does not have a target element set.
interestForElement usageIn this example, we use an <area> element's interestForElement property to set its target element and then retrieve the target element's tagName. The tagName is then printed in the <area> element's text content.
We include an <area> element and a <div> element. We turn the <div> element into a popover by setting a popover attribute on it.
<map name="example-map" id="example-map">
<area href="#" shape="default" alt="Example area" />
</map>
<div id="mypopover" popover>I am a <code><div></code> element.</div>
map {
width: 200px;
height: 100px;
background-color: pink;
padding: 5px;
}
We get references to the <area> and <div> elements in script, then declare an interest invoker-target relationship between the <area> and the <div> by setting the <area> element's interestForElement property equal to a reference to the <div>. We then set the <area> element's text content equal to a string containing the target element's tagName, retrieved via invoker.interestForElement.tagName.
const invoker = document.querySelector("area");
const popover = document.querySelector("div");
invoker.interestForElement = popover;
invoker.textContent = `My target is a ${invoker.interestForElement.tagName} element`;
The example renders like this:
{{embedlivesample("basic-interest-invoker", "100%", "100")}}
Try showing interest in the area (for example, by hovering or focusing it) to make the <div> appear.
{{Specifications}}
{{Compat}}