jQuery: Replace $ (currency symbol) to another currency symbol
Im looking for function that will allow me to replace all dollar symbols within a div to "CHF" (another currency). The reason is that the currency symbol is hardcoded and it should be replaced.
Is there a simple way of doing this?
Many than开发者_运维问答ks in advance.
jQuery('div').each(function(i){ jQuery(this).text(jQuery(this).text().replace('$','CHF')) })
精彩评论