One of my Ember components has a tagName:'li'
This is how the template appears:
<div> title</div>
<div> image </div>
<div> text </div>
The result is <li>
blocks consisting of the elements above, displayed like this:
<li id="ember2484" class="...">
<div>...</div>
<div>...</div>
<div>...</div>
</li>
I am looking for a way to make these <li>
elements clickable as I have specific link URLs to assign to each one. Is it even possible to make <li>
clickable?