tabs-ie
tabs-ie
Hello,
I have a question. Loading tabs via AJAX in IE is not working for me and I cannot determine why. I have the following html:
- <div id="tabs">
<ul>
<li><a href="/deidataform/dataform/new/1/page/1/">General</a></li>
<li><a href="/deidataform/dataform/new/2/page/1/">{{ context.chosen_bouquet.title }}</a></li>
<li><a href="#">Blahhals;dkfj</a></li>
</ul>
</div>
and my javascript:
- $tabs = $("#tabs").tabs({
disabled: [1,2],
- });
When, in IE, I view the source code I can see the url's correctly in the href attribute, however those links are just never being followed. In all other browsers everything works fine. Any advice??
Thanks!
Clea