$(function () { function display(bool) { if (bool) { $("#showImage").show(); } else { $("#showImage").hide(); } } display(false) window.addEventListener('message', function(event) { var item = event.data; display(false) if (item.type === "showImage") { if (item.status == true) { display(true) document.getElementById("imgcontainer").innerHTML = ''+item.image+''; } else { display(false) } } }) document.onkeyup = function (data) { if (data.which == 27) { $.post(`https://ps-ui/showItemImage-callback`, JSON.stringify({})); return } }; $("#showImageClose").click(function () { $.post(`https://ps-ui/showItemImage-callback`, JSON.stringify({})); return }) })