files/en-us/web/api/htmlelement/loseinterest_event/index.md
{{APIRef("HTML DOM")}}{{SeeCompatTable}}{{non-standard_header}}
The loseinterest event of the {{domxref("HTMLElement")}} interface is fired on the target element of an interest invoker when interest is lost, allowing code to be run in response.
This event is normally cancelable, except when the user hits the <kbd>Esc</kbd> key to lose interest in all interest invokers contained in the document.
Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property.
addEventListener("loseinterest", (event) => { })
onloseinterest = (event) => { }
An {{domxref("InterestEvent")}}. Inherits from {{domxref("Event")}}.
{{InheritanceDiagram("InterestEvent")}}
In this example, we use the interest and loseinterest events to report when interest is shown and lost on a {{htmlelement("button")}} element that acts as an interest invoker. We do this by printing messages into the target {{htmlelement("p")}} element's text content.
We set up the relationship between the <button> element interest invoker and its target <p> element by setting the value of the <button> element's interestfor attribute equal to the <p> element's id.
<button href="#" interestfor="mytarget">Interest invoker</button>
<p id="mytarget">No interest being shown currently.</p>
We get a reference to the <button> element and its target element via the {{domxref("HTMLButtonElement.interestForElement", "interestForElement")}} property.
const invoker = document.querySelector("[interestfor]");
const target = invoker.interestForElement;
We then set two event listeners on the target element, for the interest and loseinterest events.
<p> element's text content to report the event and include the element that triggered it; in this example, that's the <button> element. Note how you can get a reference to the interest invoker via the event object's {{domxref("InterestEvent.source", "source")}} property.target.addEventListener("interest", (e) => {
target.textContent = `Interest being shown via the ${e.source.tagName} element.`;
});
target.addEventListener("loseinterest", () => {
target.textContent = `Interest lost.`;
});
The example renders like this:
{{embedlivesample("basic-interest-invoker", "100%", "100")}}
Try showing and losing interest in the button (for example, by hovering or focusing it) to see how the <p> text changes.
{{Specifications}}
{{Compat}}