I want to replace some text in a jQuery string with images for example :
//original string
str = "This is a message from peter to john";
//After replacement
str = "This is a message from <img src='peter.jpg'> to <img src='john.jpg'>";
In php it can be done like this:
$string = strtr($str, array('peter'=>'<img src="peter.jpg" />', 'john'=>'<img src="john.jpg" />'));
Please is there a similar way to do this in jQuery just like the php method. Or any better idea to achieve this?