this is the source repository for the jTab Javascript library.
See jTab for more info..
I'm using GitHub Pages to host jtab.tardate.com directly from the GitHub repository.
How does that work? GitHub Pages basically serves whatever you commit to the repo.
For static HTML sites, that means simply adding an index.html
to the root of the repo.
GitHub now allows you to select the branch from which GitHub Pages are built. I've chosen to serve directly from the master branch.
To host on a custom URL, just two steps:
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)