I've set up jquery tabs with the ui. Included js and css is there aswell as jquery is.
But as soon as I load the page the tabs are properly shown but in every content is the full content of each tab content on top of each other.
The code is exactly the same as shown in the jquery-ui documentation but not working.
Here my includes
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="/includes/scripts/jquery/jqueryuicss/base/jquery-ui.css" />
The script
<script>
$(document).ready(function() {
$(function() {
$( "#tabs" ).tabs({ active: 0 });
});
});
</script>
And the HTML
<div id="tabs">
<ul>
<li><a href="#tabs-1"><img src="/images/flaggen/Germany.gif" alt="Deutsch" border="0" /></a></li>
<li><a href="#tabs-2"><img src="/images/flaggen/grossbritanien.gif" alt="Englisch" border="0" /></a></li>
<li><a href="#tabs-3"><img src="/images/flaggen/russland.gif" alt="Russisch" border="0" /></a></li>
</ul>
<div id="tabs-1">
<p>TEST Deutsch</p>
</div>
<div id="tabs-2">
<p>TEST Englisch</p>
</div>
<div id="tabs-3">
<p>TEST Russisch</p>
</div>
</div>
Please help, thanks in advance
Bernhard