Jquery Templeate, droping last item off in the each
- by Lawrence
Currently I am using jquery templating with some json data, I have a couple images that I am getting and I would like to drop the last image that I am getting from my json data. Right now I have this coded ( this only a snippet of the spot I am having the problem at):
<div class="altViews">
<ul class="clearfix">
{{each(i,addImage) AdditionalImages}}
<li class="altImage">
<img src="http://images.url.com/images/products/${addImage}" alt="${Name}" id="${addImage}"/>
</li>
{{/each}}
</ul>
</div>
SO the main help I need is to be able to drop the last li, I just dont know how to use my index to do that.