JSFiddle - React, Tailwind, and code Playground

by vacammar

HTML

<div id="graph-container_"></div>

JavaScript

var input = {
	pod: '',
  context: ''
};
function _createImgElement() {
  var _newImg = document.createElement('img');
  _newImg.id = 'img-export_'+input.pod+'_'+input.context;
  _newImg.className = 'pdf-template';
  document.getElementById('graph-container_'+input.pod).append(_newImg);
  return document.getElementById(_newImg.id);
}
_createImgElement();