I want to create a function that changes my div's text(keep in mind this is only a sample of my code) from greek to English Now I know this may be a possible duplicate but I have searched all over this site to find this and tried multiple stuff
      <button class="one" OnClick="change()">
      English
      </button>
      <button class="two">
      Ελληνικα
      </button>
      <div class="left" Id="left">
                  TEXT.......
                </div>
 function change() {
  document.getElementByClassName("left").innerHtml('fwfewfc');
 }
 
    