jQuery Ajax Tabs and IE
jQuery Ajax Tabs and IE
Hello,
I finished a project with jQuery 1.2.6, ui.core1.5.2, ui.tabs1.5.2,
everithing working fine on Firefox3, BUT when I tested the project
with IE7 I noticed that the ajax tabs are not working :(( .
I implemented the tabs like this:
<script type="text/javascript">
$(function() {
$('#container-12 > ul').tabs();
});
</script>
<div id="container-12">
<ul>
<li><a href="index.php?option=com_anunt2&no_html=1&anunt2Task=showNew"
title="Ultimele Anunturi"><span>Ultimele Anunţuri</span></a></li>
<li><a href="index.php?
option=com_anunt2&no_html=1&anunt2Task=popularListing" title="Anunturi
Populare"><span>Anunţuri Populare</span></a></li>
<li><a href="index.php?option=com_anunt2&no_html=1&anunt2Task=popular"
title="Populare"><span>Populare</span></a></li>
</ul>
</div>
I implemented it even like this, but still not working on IE7 :(
<div id="container-12">
<ul>
<li><a href="http://www.site.net/index.php?
option=com_anunt2&no_html=1&anunt2Task=showNew" title="Ultimele
Anunturi"><span>Ultimele Anunţuri</span></a></li>
<li><a href="http://www.site.net/index.php?
option=com_anunt2&no_html=1&anunt2Task=popularListing" title="Anunturi
Populare"><span>Anunţuri Populare</span></a></li>
<li><a href="http://www.site.net/index.php?
option=com_anunt2&no_html=1&anunt2Task=popular"
title="Populare"><span>Populare</span></a></li>
</ul>
</div>
Can anyone help? Would be apreciated :)