JSFiddle - React, Tailwind, and code Playground
HTML
<img id="imgLogo"
src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" alt="jQuery By Example" />
CSS
body
{
background-color:black;
}
JavaScript
$(document).ready(function() {
$("#imgLogo").wrap('<a href="http://jquerybyexample.blogspot.com/" target="_blank"></a>');
});