Steve Schwartz
Steve Schwartz
No prob. It'd probably be a good idea for me to do some refactoring and pull the `addTab()` function out to a public method you could call without having to...
Hey @CBox, sorry for the confusion. Each time you call `myeasytabs.init()`, it's deleting and re-creating the `easytabs` data object on the tab container element, which means simply that your `myeasytabs`...
Have you been able to figure this out? I'd like to close this issue if possible, or if no one else has seen this issue.
@ndelaforge Thanks for the info. I don't use backbone much. Do you know if there's a way to tell backbone to ignore links? jQuery Mobile is one example off the...
I think your best bet would be to just hide the tabs with `display: none` in your CSS. Then you can just use buttons to attach the [public `select` method](http://os.alfajango.com/easytabs/#public-methods),...
Oh, I thought you were saying you didn't want tabs. To disable their click events, just use plain jQuery: ``` js $('.my-tabs').on('click', function(e) { return false; }); ```
I could, but I honestly think we can do this right without official support ;-) If the above doesn't work, how about this: ``` js var tabs = $('#my-tabs-container'); tabs.easytabs();...
Can you explain a bit more what the hash-change bug is with this, and if you've figured it out?
Sorry to hear you had such a bad experience. The documentation can be found here: http://os.alfajango.com/easytabs Please also feel free to open an issue for any bugs you had found,...
@DaAwesomeP Thanks for helping with this. Just FYI though, jQuery UI Tabs isn't lighter weight (and I'm not sure what you mean by faster). If you're only using UI Tabs...