Hacker News new | ask | show | jobs
by lbatchelor 1256 days ago
Edit: I've actually managed to get the javascript down to a measly 859 bytes now. Pretty happy with some of the code golfing techniques I came up with
1 comments

You should be able to change

  e.addEventListener("keyup"...
to

  e.onkeyup=...
but I haven't tested it.
Ooh! Don't know how I missed that, I'll give it a go! Cheers!