Advertisement
Guest User

pasta

a guest
Jan 18th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const highlight = document.getElementsByClassName("highlight");
  2. const input = document.getElementsByTagName("input")[0];
  3. const event = new InputEvent("input", {data: "k"});
  4.  
  5. setInterval(() => {
  6.  if (highlight.length > 0) {
  7.  input.value = highlight[0].innerText + " ";
  8.  input.dispatchEvent(event)
  9.  }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement