hey all,
i've written a foreach loop in smarty that outputs links, i'm trying to make it though so the SELECTED attribute doesn't output a link:
{foreach from=$currencies key=k item=f_currency}
<li {if $id_currency_cookie == $f_currency.id_currency}class="selected"{/if}>
<a href="javascript:setCurrency({$f_currency.id_currency});" title="{$f_currency.name}">{$f_currency.sign}</a>
</li>
{/foreach}
it works fine, however, i want the SELECTED currency to not be a link, i'm so confused on how to do this! thanks