In short:
Execute this js script on
https://skribbl.io (via your browser console)
Problem: it "switches"/reloads the page after successfully joining
- this.Enterrr = document.getElementById('formLogin');
-
-
let ev = document.createEvent('Event');
-
-
ev.initEvent('submit');
-
-
this.Enterrr.dispatchEvent(ev);
Who can change the code so the switching/reloading does not appear?
Even easier code:
- var foo = document.getElementById('formLogin');
-
foo.dispatchEvent(new Event('submit'));
Also reloads the page... And simply clicking manually or pressing enter does not lead to a page reload. Weird...