https://github.com/tpkn/hashbro
Micro parser for url hash
https://github.com/tpkn/hashbro
Last synced: 3 months ago
JSON representation
Micro parser for url hash
- Host: GitHub
- URL: https://github.com/tpkn/hashbro
- Owner: tpkn
- License: mit
- Created: 2018-02-07T21:38:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-07T21:39:10.000Z (over 7 years ago)
- Last Synced: 2025-01-14T08:12:53.787Z (4 months ago)
- Language: HTML
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hashbro
Micro parser for url hash
## Usage
```javascript
function onPage(link){
console.log(link);
}var hash = new Hashbro(onPage);
// http://domain.com/#/page1/page2/page3/
hash.goto('/page1/page2/page3/');// http://domain.com/#/page1
hash.back(2);
```