I'm trying to remove the euro sign from my string.
Since the string looks like this €33.0000 - €37.5000, I first explode to string on the - after I try to remove the euro sign.
var string = jQuery('#amount').val();
var arr = string.split(' - ');
if(arr[0] == arr[1]){
    jQuery(this).find('.last').css("display", "none");
}else{
    for(var i=0; i< arr.length; i++){
        arr[i].replace('€','');
        console.log(arr[i]);
    }
}
When I try it on my site, the euro signs aren't removed, when I get the string like this
var string = jQuery('#amount').val().replace("€", "");
Only the first euro sign is removed
 
     
     
     
     
     
    