wordfind
wordfind copied to clipboard
A small javascript library for generating and solving word find (also known as word search) puzzles.
Wondering if there is way to indicate the preference of having a diagonal (or any other) direction?
The solve display need to find all the buttons created with an automated created class with the text to find. So, if your page uses this class to display some...
It does not support cross-browser compatibility
Currently this breaks when user has scrolled the page. Also, this commit uses preventDefault() to keep page from scrolling when user is connecting a word.
file: wordfindgame.js function: touchMove, line107 problem: the touch events do not register on the grid fix: change `var targetElement = document.elementFromPoint(xPos, yPos); select(targetElement)` **TO** `select(document.elementFromPoint(xPos, yPos));` Because variable targetElement is...
This fork was made to create multiple-language versions, by updating the wordsearch.js file to handle those cases. It now supports English, Spanish, French, Italian, German, Japanese, Chinese, Hindi, Indonesian, Dutch,...
Fixes the event names for touch events. This allows the script to work with Internet Explorer 10 and 11 where it did not before.
Hi. Because I made the mistake of adding some extra commits on my fork branch used in PR #12 before you merged it, your original README has been replaced by...
Orientation not working
When puzzle is filled with random characters ,sometimes a word occurs twice. Am I missing something?