[READ-ONLY] Mirror of https://github.com/probablykasper/playground. playground.kasper.space
0

Configure Feed

Select the types of activity you want to include in your feed.

playground / js2 / butoon.js
225 B 17 lines
1"use strict" 2 3function butoonFunc() { 4 alert("EYYYY BRUH") 5} 6 7var girk = document.getElementsByTagName("button")[2]; 8 9girk.onclick = function() { 10 alert("I'm a giiirk") 11}; 12 13/* 14window.onload = function() { 15 butoonFunc(); 16} 17*/