Revision: 42802
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 10, 2011 22:19 by Alwaison
Initial Code
/** * Envuelve el simbolo del euro en un <sup>, para mostrarlo correctamente (superindice) * tanto en listado de productos como en ficha de producto */ function initOptimiceCurrency(){ jQuery('.products-grid .price, .product-shop .price').each(function(){ var h = jQuery(this).html(); h = jQuery.trim(h); var c = h.charAt(h.length-1); var repl = '<sup>'+c+'</sup>'; h = h.replace(' ', ''); h = h.replace('\€',repl); jQuery(this).html(h); }); }
Initial URL
Initial Description
Initial Title
Wrap euro simbol in prices (Magento)
Initial Tags
jquery, magento
Initial Language
jQuery