loadImg.js 305 B

123456789
  1. // https://stackoverflow.com/questions/20756042/javascript-how-to-display-image-from-byte-array-using-javascript-or-servlet
  2. window.onload = function () {
  3. console.log('Load img here...');
  4. setTimeout(function(){
  5. document.getElementById("expeImg").style.display = "inline";
  6. }, 500);
  7. }