JSFiddle - React, Tailwind, and code Playground

by oduska

HTML

<p>
    <img class="mailback-logo" src="//eridirect.com/wp-content/uploads/2016/12/vizio-logo.gif">
</p>

JavaScript

jQuery("body *").contents().each(function() {
  if(this.nodeType==3){
    this.nodeValue = this.nodeValue.replace(/VIZIO/g, 'Acer');
    this.nodeValue = this.nodeValue.replace(/vizio/g, 'acer');
    this.nodeValue = this.nodeValue.replace('http://www.acer.com/environment/', 'https://www.acer.com/ac/en/US/content/recycling');
  }
});

jQuery('.mailback-logo').attr('src', 'https://static.acer.com/up/Resource/Libraries/Acer/434/images/logo.svg');