I am using jQuery Tools to create a tabbed box that gets content via ajax.
However, the content in the external .html file shows up but not anything that I try to put in a div within that file.
I am using jQuery Tools to create a tabbed box that gets content via
Share
OK… so, when you say “content in the external .html file shows up” I’m going to assume you mean “content that’s not in a div” appears in the tab.
That means only one of two things:
You are applying CSS that is hiding that div.
#tab divor something is set to bedisplay:none'orvisibility: hiddenby default. So either the CSS needs updating or there’s some missing JavaScript that’s supposed to flip it to being visible.The opposite of #1: your CSS is otherwise fine, but you have some JS (possibly even the plugin itself, mistakenly configured incorrectly) that is adding the styles to hide it.