This works as what I want:
var elite = document.getElementById(\"elite\"),
leet = document.getElementById(\"leet\"),
alphabets = {
a: \"4\",
b: \"8\"
I'm looking for a way to convert words like "cool, "hacker" to "kewl" and "haxor" directly then convert the other letters with changelettrs()
Currently you're converting letters, then converting words.
Simply swap those operations around:
changeWords();
changeLetters();
You will, of course, have to change the keys in words as they will now apply before letter conversion.