In my script there is a list of words that populate a grid dynamically.
Is there a way to fill the list with the words that populate the grid through HTML?
I have this at the moment...
var listOfWords = ["mat", "cat", "dog", "pit", "pot", "fog"];
Is there a way to add more words in this list through HTML rather than in the script?
I ask because new words need to be added by colleges that can deal with HTML but not script
Thanks.