+ 1

How to make a search engine in a website? HTML

Can someone tell me, or give me a piece of code, which has a search engine that searches up words from the website! Thank you!

8th Jun 2018, 11:35 AM
Snowflake C
Snowflake C - avatar
1 Answer
+ 1
You can't in plain html, but you can in JavaScript, you have to get all text in a page and use for example: myText.indexOf("word you're looking for"); in JavaScript, to see if there's the data you're looking for, indexOf will return the index of the first character that matches your search value
8th Jun 2018, 12:38 PM
Owenizedd
Owenizedd - avatar