index.html 594 Bytes
<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <script src="./js/jquery.min.js"></script>

    <title></title>
  </head>
  <body>
    HELLO MINSEOK
    <br>
    <img src="/frames" id="frame" name="frame" alt="Here" style="width: 30%; height:auto;">
  </body>

  <script type="text/javascript">
    // function frameReload(){
    //   var time = new Date().getTime();
    //   var src = '/frames?time=' + time;
    //   $("#frame").attr("src", src);
    // }
    // setTimeout('frameReload()',10);
    setTimeout('location.reload()', 10);
  </script>
</html>