I have two inline HTML images.
For sake of brevity, let's just say this particular mark-up is really difficult to get to, where these two images live.
One image has an ID, the other image does not, but it has a parent div with an ID. What I would like to do is, update / change the src="" of each, with raw JS or preferably smaller jQuery.
Image #1
<img id="log_im" src="./wp-content/uploads/2015/01/old_logo.png">
Image #2
<div id="txt_left">
<img style="max-width: 300px; margin-left: -14px;" src="./wp-content/uploads/2015/01/outdatedimage.png">
</div>