Steve Schwartz
Steve Schwartz
No, the library uses `jQuery`, there's not problem using it with noconflict mode. Can you explain what you mean by "not specifying the options and event hooks would cause errors...
Oh, I see, you're calling `console.log` in the inspector console, so that first value is just the return value of the `console.log` statement. OK, so `true` is what it's returning,...
Oh okay, I thought you were saying you had multiple instances on the page. I have to say, I'm totally stumped. I have no idea why it would have `true`...
Can you maybe list all the JS libraries that are being loaded on that page? All I can think is that some library is messing with jquery's data function or...
I wonder if it's jQuery UI causing the issues. Can you try without that? Also, what browser(s) is this?
Do you have any screenshots of what you're seeing, and is it only in specific browsers? I can't seem to reproduce it.
There's not currently a way to manually add a tab to the set, but you could grab the attached `easytabs` object and re-run `init()`, like this: ``` js $('#tab-container').easytabs(); //...
That's not really enough to go on. Where's the error coming from?
Oh, that sounds like it might actually be an issue I encountered myself and fixed a few weeks ago. Apparently I forgot to push the fix to Github. Try using...
I'm just guessing now, since I haven't personally tried doing this, but maybe try something like this: ``` js var $tabContainer = $('#tab-container'); $tabContainer.easytabs(); // do some stuff, add a...