This PHP/Smarty doesn't work in IE
Posted
by Kyle Sevenoaks
on Stack Overflow
See other posts from Stack Overflow
or by Kyle Sevenoaks
Published on 2010-04-26T13:05:03Z
Indexed on
2010/04/26
13:13 UTC
Read the original article
Hit count: 261
I'm starting to get sick of IE's random problems. Page link. (Add things to the cart with the kjøp button and handlevogn)
I have this little tiny code here,
{foreach $cart.taxes.$currency as $tax}
<div id="subTotalCaption2"><p style="width:100px;">{$tax.name_lang}:</p></div>
<div id="taxAmount2"><p>{$tax.formattedAmount}</p></div>
{/foreach}
That's meant to display the amount of total tax for each of the items in the basket. (MVA 25%) This works in every other browser but not IE. Why? Why not? Just why?
Any help at all would be very much appreciated.
© Stack Overflow or respective owner