https://github.com/gluk-w/searhbar-js
Search bar with filters
https://github.com/gluk-w/searhbar-js
javascript jquery-plugin jquery-ui jquery-widgets
Last synced: 3 months ago
JSON representation
Search bar with filters
- Host: GitHub
- URL: https://github.com/gluk-w/searhbar-js
- Owner: gluk-w
- License: mit
- Created: 2017-01-17T17:45:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-03-16T21:49:02.000Z (about 6 years ago)
- Last Synced: 2025-04-12T17:34:08.515Z (about 1 year ago)
- Topics: javascript, jquery-plugin, jquery-ui, jquery-widgets
- Language: JavaScript
- Size: 18.6 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# searhbar-js
Search bar with filters
## Usage
### Create container with input box and link to toggle filters
```html
```
### Create container for filters
```html
Year:
Month:
```
### Include JS and CSS
```html
jQuery(function($) {
$('#search_bar').searchbar({
'filters_container': '#search_filters',
'filters_link': '#advanced'
});
});
```