https://github.com/francescou/search.js
Javascript search engine
https://github.com/francescou/search.js
Last synced: about 1 month ago
JSON representation
Javascript search engine
- Host: GitHub
- URL: https://github.com/francescou/search.js
- Owner: francescou
- Created: 2012-10-01T20:26:05.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-05T16:19:18.000Z (almost 12 years ago)
- Last Synced: 2025-02-01T00:44:47.761Z (3 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Search.js
=========Javascript search engine
depends on jQuery and javascript Porter Stemmer
```js
$(document).ready(function () {
$("#query").searchjs({
content: {
"doc1": "one uno un en ein",
"doc2": "due two dos deux",
"doc3": "tre, trois, three tres"
}
});
});```