close this to read article
Engagement on a page means that visitors have submitted a form or clicked either of the following elements. VWO records a conversion as soon as the “mousedown” event occurs.
- Anchor element (<a></a>)
- Any element which is a descendant of an Anchor element, such as click img in
<a><img /></a>
- A Button element (
<button></button>
) - Any element which is a descendant of a Button element, such as click span in
<button><span></span></button>
- Input element with the type button (
<input type="button" />)
- Input element with the type submit (
<input type="submit" />
) - Input element with the type image (
<input type="image" />
)