Issues replacing dashes by <br> with javascript using wordpress
I am trying to replace all dashes(-) by a "br" but it gives me issues. I have tried var strNewString = $('.member__designation').html().replace(/-/g,'<br>'); $('.member__designation').html(strNewString); Here is the html Before applying the code above After applying the code above