There is a problem with referencing a question when you have tow or more words in the same row/column. In this case we get JS error and you can't enter an answer.
Problem is in how crossword references questions in legend and how it references it in JS code.
In legend if there is multiple words in the same row/column it will append letter to it (for example 8A, 8B, 8C...):
There is a problem with referencing a question when you have tow or more words in the same row/column. In this case we get JS error and you can't enter an answer. Problem is in how crossword references questions in legend and how it references it in JS code. In legend if there is multiple words in the same row/column it will append letter to it (for example 8A, 8B, 8C...):
so it will create a DIV with that id:
but array passed to JS only refers to row/coll:
This is a problem because now you can't reference created DIV elements:
var id will only have value "a8" but there is DIV element with this id.