Advertisement
Plast0000

Untitled

Nov 15th, 2021
788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var cat = document.getElementById("app");
  2. console.log(cat);
  3. cat.setAttribute("onClick","press()");
  4.  
  5. function press() {
  6.     cat.click();
  7.     console.log("ata");
  8. }
  9.  
  10. window.setInterval(press, 700);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement