JSFiddle - React, Tailwind, and code Playground
JavaScript
var img;
$('#myModal').on('show.bs.modal', function(e) {
img = $(this).find('img');
$(img).show();
}).on('hide.bs.modal', function (e) {
$(img).hide();
//Uncaught ReferenceError: img is not defined
});