<script src="/js/jquery.min.js"></script>
<script>
function getFile ( theFile, theDiv ) {	
  var theOffset = location.pathname.substring(0, location.pathname.lastIndexOf("/"));
  $.get("/textedit/core.php",{
    file: theFile,
    prefix : theDiv,
    cssid : theDiv,
    offset : theOffset
  }).done(function(data,status){
    $("#"+theDiv).html(data);
  });
}
</script>
<div id="hema"><img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" onload="$thisFile = this.parentNode.id; getFile ( $thisFile , $thisFile );" style="width: 0px; height: 0px;" /></div>

The JavaScript code is also visible in the source of this page.

Feb 17 2021 05:47:37