Dynamics portal appears to only prepend the currency symbol when there is a value in the field. I have tried using the following but it duplicates the currency symbol if the field is already populated.
$('input.money').parent('div').addClass('input-group').prepend('<span class="input-group-addon">£</span>');
I don’t want to have to check each currency field to see if it's null in order to prepend the currency symbol
Your advice would be great :)
*This post is locked for comments