I have an asset listing that displays for each respective asset:
<li>
<div class="img-bg">
<img src="%asset_thumbnail_v_w200_url%" alt="%asset_thumbnail_alt%" />
<div class="desc">%asset_metadata_dc.description%</div>
</div>
<div class="title">
<h3>%asset_short_name_linked%</h3>
<!--span class="favourite" title="Add to favourite">Add to favourite</span-->
</div>
</li>
I need to add on onclick event to the <li> and need it to give me the url of this asset.
If I use %asset_short_name_linked% I get the full anchor tag and if I use %asset_url% I get the urel of the page that displays the asset listing.
So what is the tag to get just the url of the asset that is being iterated in the listing?