// search functionality
search = function(){
query = document.getElementById('search').value;
if (query == "") {
return;
}
found = -1; // initialize found to false
for (var i = 0; i < dictionary.length; i++) {
if (query == Dictionary[i].word) {
found = i;
break;
}else {
document.getElementById('word_text').innerHTML = "Word not found";
document.getElementById('definition').innerHTML = "The word you entered is not found in our dictionary";
document.getElementById('related').innerHTML = "No related words";
}
}
if (found >= 0) {
show(found);
}
}
- Posts
- 23
- Registration date
- Sunday February 17, 2019
- Status
- Member
- Last seen
- March 2, 2019
-- Posts
- 12936
- Registration date
- Monday June 3, 2013
- Status
- Moderator
- Last seen
- September 3, 2019
1342 -- Posts
- 12936
- Registration date
- Monday June 3, 2013
- Status
- Moderator
- Last seen
- September 3, 2019
1342 -- Posts
- 23
- Registration date
- Sunday February 17, 2019
- Status
- Member
- Last seen
- March 2, 2019
-and it workd thank you for your help
- Posts
- 12936
- Registration date
- Monday June 3, 2013
- Status
- Moderator
- Last seen
- September 3, 2019
1342 -