Crossword Puzzle Game for Kids: United States Presidents (2024)

"); window.ramp.que.push(function () { window.ramp.addTag("pwMobiMedRectAtf"); })} }else{document.write("

");}

Printable version

Back to all Crossword Puzzles

Click on a word in the puzzle to see the clue

This interactive crossword puzzle requires JavaScript and a reasonably recent web browser, such as Internet Explorer 5.5or later, Netscape 7, Mozilla, Firefox, or Safari. If you have disabled web page scripting, please re-enable it and refreshthe page. If this web page is saved to your computer, you may need to click the yellow Information Bar at the top ofthe page to allow the puzzle to load.

");elsedocument.write("
<\/td>");}document.writeln("<\/tr>");}document.writeln("<\/table>");// Finally, show the crossword and hide the wait message.Initialized = true;document.getElementById("waitmessage").style.display = "none";document.getElementById("crossword").style.display = "block";}// * * * * * * * * * *// Event handlers// Raised when a key is pressed in the word entry box.function WordEntryKeyPress(event){if (CrosswordFinished) return;// Treat an Enter keypress as an OK click.if (CurrentWord >= 0 && event.keyCode == 13) OKClick();}// * * * * * * * * * *// Helper functions// Called when we're ready to start the crossword.function BeginCrossword(){if (Initialized){document.getElementById("welcomemessage").style.display = "";document.getElementById("checkbutton").style.display = "";}}// Returns true if the string passed in contains any characters prone to evil.function ContainsBadChars(theirWord){for (var i = 0; i < theirWord.length; i++)if (BadChars.indexOf(theirWord.charAt(i)) >= 0) return true;return false;}// Pads a number out to three characters.function PadNumber(number){if (number < 10)return "00" + number;else if (number < 100)return "0" + number;elsereturn "" + number;}// Returns the table cell at a particular pair of coordinates.function CellAt(x, y){return document.getElementById("c" + PadNumber(x) + PadNumber(y));}// Deselects the current word, if there's a word selected. DOES not change the value of CurrentWord.function DeselectCurrentWord(){if (CurrentWord < 0) return;var x, y, i;document.getElementById("answerbox").style.display = "none";ChangeCurrentWordSelectedStyle(false);CurrentWord = -1;}// Changes the style of the cells in the current word.function ChangeWordStyle(WordNumber, NewStyle){if (WordNumber< 0) return;var x = WordX[WordNumber];var y = WordY[WordNumber];if (WordNumber<= LastHorizontalWord)for (i = 0; i < WordLength[WordNumber]; i++)CellAt(x + i, y).className = NewStyle;elsefor (i = 0; i < WordLength[WordNumber]; i++)CellAt(x, y + i).className = NewStyle;}// Changes the style of the cells in the current word between the selected/unselected form.function ChangeCurrentWordSelectedStyle(IsSelected){if (CurrentWord < 0) return;var x = WordX[CurrentWord];var y = WordY[CurrentWord];if (CurrentWord <= LastHorizontalWord)for (i = 0; i < WordLength[CurrentWord]; i++)CellAt(x + i, y).className = CellAt(x + i, y).className.replace(IsSelected ? "_unsel" : "_sel", IsSelected ? "_sel" : "_unsel");elsefor (i = 0; i < WordLength[CurrentWord]; i++)CellAt(x, y + i).className = CellAt(x, y + i).className.replace(IsSelected ? "_unsel" : "_sel", IsSelected ? "_sel" : "_unsel");}// Selects the new word by parsing the name of the TD element referenced by the // event object, and then applying styles as necessary.function SelectThisWord(event){if (CrosswordFinished) return;var x, y, i, TheirWord, TableCell;// Deselect the previous word if one was selected.document.getElementById("welcomemessage").style.display = "none";if (CurrentWord >= 0) OKClick();DeselectCurrentWord();// Determine the coordinates of the cell they clicked, and then the word that// they clicked.var target = (event.srcElement ? event.srcElement: event.target);x = parseInt(target.id.substring(1, 4), 10);y = parseInt(target.id.substring(4, 7), 10);// If they clicked an intersection, choose the type of word that was NOT selected last time.if (TableAcrossWord[x][y] >= 0 && TableDownWord[x][y] >= 0)CurrentWord = PrevWordHorizontal ? TableDownWord[x][y] : TableAcrossWord[x][y];else if (TableAcrossWord[x][y] >= 0)CurrentWord = TableAcrossWord[x][y];else if (TableDownWord[x][y] >= 0)CurrentWord = TableDownWord[x][y];PrevWordHorizontal = (CurrentWord <= LastHorizontalWord);// Now, change the style of the cells in this word.ChangeCurrentWordSelectedStyle(true);// Then, prepare the answer box.x = WordX[CurrentWord];y = WordY[CurrentWord];TheirWord = "";var TheirWordLength = 0;for (i = 0; i < WordLength[CurrentWord]; i++){// Find the appropriate table cell.if (CurrentWord <= LastHorizontalWord)TableCell = CellAt(x + i, y);elseTableCell = CellAt(x, y + i);// Add its contents to the word we're building.if (TableCell.innerHTML != null && TableCell.innerHTML.length > 0 && TableCell.innerHTML != " " && TableCell.innerHTML.toLowerCase() != ""){TheirWord += TableCell.innerHTML.toUpperCase();TheirWordLength++;}else{TheirWord += "•";}}document.getElementById("wordlabel").innerHTML = TheirWord;document.getElementById("wordinfo").innerHTML = ((CurrentWord <= LastHorizontalWord) ? "Across, " : "Down, ") + WordLength[CurrentWord] + " letters.";document.getElementById("wordclue").innerHTML = Clue[CurrentWord];document.getElementById("worderror").style.display = "none";document.getElementById("cheatbutton").style.display = (Word.length == 0) ? "none" : "";if (TheirWordLength == WordLength[CurrentWord])document.getElementById("wordentry").value = TheirWord.replace(/&AMP;/g, '&');elsedocument.getElementById("wordentry").value = "";// Finally, show the answer box.document.getElementById("answerbox").style.display = "block";try{document.getElementById("wordentry").focus();document.getElementById("wordentry").select();}catch (e){}}// Called when the user clicks the OK link.function OKClick(){var TheirWord, x, y, i, TableCell;if (CrosswordFinished) return;if (document.getElementById("okbutton").disabled) return;// First, validate the entry.TheirWord = document.getElementById("wordentry").value.toUpperCase();if (TheirWord.length == 0){DeselectCurrentWord();return;}if (ContainsBadChars(TheirWord)){document.getElementById("worderror").innerHTML = "The word that you typed contains invalid characters. Please type only letters in the box above.";document.getElementById("worderror").style.display = "block";return;}if (TheirWord.length < WordLength[CurrentWord]){document.getElementById("worderror").innerHTML = "You did not type enough letters. This word has " + WordLength[CurrentWord] + " letters.";document.getElementById("worderror").style.display = "block";return;}if (TheirWord.length > WordLength[CurrentWord]){document.getElementById("worderror").innerHTML = "You typed too many letters. This word has " + WordLength[CurrentWord] + " letters.";document.getElementById("worderror").style.display = "block";return;}// If we made it this far, they typed an acceptable word, so add these letters to the puzzle and hide the entry box.x = WordX[CurrentWord];y = WordY[CurrentWord];for (i = 0; i < TheirWord.length; i++){TableCell = CellAt(x + (CurrentWord <= LastHorizontalWord ? i : 0), y + (CurrentWord > LastHorizontalWord ? i : 0));TableCell.innerHTML = TheirWord.substring(i, i + 1);}DeselectCurrentWord();}// Called when the "check puzzle" link is clicked.function CheckClick(){var i, j, x, y, UserEntry, ErrorsFound = 0, EmptyFound = 0, TableCell;if (CrosswordFinished) return;DeselectCurrentWord();for (y = 0; y < CrosswordHeight; y++)for (x = 0; x < CrosswordWidth; x++)if (TableAcrossWord[x][y] >= 0 || TableDownWord[x][y] >= 0){TableCell = CellAt(x, y);if (TableCell.className == "ecw-box ecw-boxerror_unsel") TableCell.className = "ecw-box ecw-boxnormal_unsel";}for (i = 0; i < Words; i++){// Get the user's entry for this word.UserEntry = "";for (j = 0; j < WordLength[i]; j++){if (i <= LastHorizontalWord)TableCell = CellAt(WordX[i] + j, WordY[i]);elseTableCell = CellAt(WordX[i], WordY[i] + j);if (TableCell.innerHTML.length > 0 && TableCell.innerHTML.toLowerCase() != ""){UserEntry += TableCell.innerHTML.toUpperCase();}else{UserEntry = "";EmptyFound++;break;}}UserEntry = UserEntry.replace(/&AMP;/g, '&');// If this word doesn't match, it's an error.if (HashWord(UserEntry) != AnswerHash[i] && UserEntry.length > 0){ErrorsFound++;ChangeWordStyle(i, "ecw-box ecw-boxerror_unsel");}}// If they can only check once, disable things prematurely.if ( OnlyCheckOnce ){CrosswordFinished = true;document.getElementById("checkbutton").style.display = "none";}// If errors were found, just exit now.if (ErrorsFound > 0 && EmptyFound > 0)document.getElementById("welcomemessage").innerHTML = ErrorsFound + (ErrorsFound > 1 ? " errors" : " error") + " and " + EmptyFound + (EmptyFound > 1 ? " incomplete words were" : " incomplete word was") + " found.";else if (ErrorsFound > 0)document.getElementById("welcomemessage").innerHTML = ErrorsFound + (ErrorsFound > 1 ? " errors were" : " error was") + " found.";else if (EmptyFound > 0)document.getElementById("welcomemessage").innerHTML = "No errors were found, but " + EmptyFound + (EmptyFound > 1 ? " incomplete words were" : " incomplete word was") + " found.";if (ErrorsFound + EmptyFound > 0){document.getElementById("welcomemessage").style.display = "";return;}// They finished the puzzle!CrosswordFinished = true;document.getElementById("checkbutton").style.display = "none";document.getElementById("congratulations").style.display = "block";document.getElementById("welcomemessage").style.display = "none";}// Called when the "cheat" link is clicked.function CheatClick(){if (CrosswordFinished) return;var OldWord = CurrentWord;document.getElementById("wordentry").value = Word[CurrentWord];OKClick();ChangeWordStyle(OldWord, "ecw-box ecw-boxcheated_unsel");}// Returns a one-way hash for a word.function HashWord(Word){var x = (Word.charCodeAt(0) * 719) % 1138;var Hash = 837;var i;for (i = 1; i <= Word.length; i++)Hash = (Hash * i + 5 + (Word.charCodeAt(i - 1) - 64) * x) % 98503;return Hash;}//-->

Across

  1. The president is the leader of this branch of government
  2. He is sometimes called the Father of the Constitution
  3. Polk and Buchanan shared this most common first name for president
  4. Married to Hillary, he was once the governor of Arkansas
  5. He helped bring an end to the Cold War between the US and Russia
  6. The first president
  7. Andrew ____ became president after Lincoln was assassinated
  8. He was a Union general during the Civil War

Down

  1. President from Georgia nicknamed Jimmy
  2. Last name of the second and sixth presidents
  3. The only president to resign from office
  4. Roosevelt who spoke softly and carried a big stick
  5. The number of presidents that are carved into Mount Rushmore
  6. He wrote the Declaration of Independence
  7. He was supreme commander of the US forces during World War II
  8. The 5th president who was known for the ____ Doctrine
  9. First African-American president
  10. President during World War I
  11. Grover who served two non-consecutive terms as president
  12. Roosevelt who served four terms as president
  13. He was assassinated while riding in a convertible car in Dallas, Texas
  14. President during the Civil War
  15. He gave the order to drop the atomic bomb on Japan
  16. Last name of father and son presidents both named George
  17. He served on the Supreme Court after leaving the office of president

Back to Kids Games

Crossword Puzzle Game for Kids: United States Presidents (2024)
Top Articles
Latest Posts
Article information

Author: Jeremiah Abshire

Last Updated:

Views: 6409

Rating: 4.3 / 5 (54 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Jeremiah Abshire

Birthday: 1993-09-14

Address: Apt. 425 92748 Jannie Centers, Port Nikitaville, VT 82110

Phone: +8096210939894

Job: Lead Healthcare Manager

Hobby: Watching movies, Watching movies, Knapping, LARPing, Coffee roasting, Lacemaking, Gaming

Introduction: My name is Jeremiah Abshire, I am a outstanding, kind, clever, hilarious, curious, hilarious, outstanding person who loves writing and wants to share my knowledge and understanding with you.