JSFiddle - React, Tailwind, and code Playground
by Cwalkdawg
HTML
<img src="http://someshinyobject.com/sites/default/files/styles/larger/public/IMG_3736_cr.png?itok=b64w7wgA" title="My Amazon Kindle" class="post-image" />
JavaScript
$('.post-image').each(function () {
$this = $(this);
$this.wrap('<div class="post-image-wrapper" />');
$this.after('<span class="post-image-caption">' + $this.attr('title') + "</span>");
});