Hello,
I'm working on a cryptogram game for an educational site. The cryptogram will be displayed like scrabble tiles, and letter will have a corresponding text box. So for a five-letter word, there will be five scrabble tiles with five small text boxes beneath for students to fill in individual letters. At the end there will be a validate button that tells them if they have all the letters right or not.
I found a reference to this solution in the forum:
http://www.clickfind.com.au/javascri...tion/index.cfm. It looks to me like this will work but I can't figure out how to modify it to check for specific values.
I've posted an example of my table below in case it's useful to a helpful person out there. I realize it's not much of a start.
Thanks in advance for your help,
ransomcat
Code:
<form>
<table id="cryto_one" class="crypto" cols="15">
<tr>
<td><img src="tiles/20wide/4.gif" /></td> <td> </td> <td><img src="tiles/20wide/!.gif" /></td> <td><img src="tiles/20wide/3.gif" /></td>
</tr>
<tr>
<td><input name="four" type="text" class="crypto_letter" /></td> <td></td> <td><input name="exclam" type="text" class="crypto_letter" /></td> <td><input name="3" type="text" class="crypto_letter" /></td>
</tr>
</table>
<input type="submit" value="Submit" />
</form>