It looks like you are initializing the rotation of the slider each time you load a tab and that the previous rotation is still continuing. So, you get double the rotation when loading a second instance of a tab, triple on the third, etc.
This:
Code:
<script type="text/javascript" src="http://test.joomlaprodigy.com/modules/mod_fptabcasejp/js/fptabcasejp.js"></script>
<script type="text/javascript" src="http://test.joomlaprodigy.com/modules/mod_fptabcasejp/js/jquery-1.1.2.js"></script>
<script type="text/javascript" src="http://test.joomlaprodigy.com/modules/mod_fptabcasejp/js/jquery_tabs.js"></script>
and this:
Code:
<style type="text/css">
.contentdiv_text{
float: left;
margin-left: 230px;
}
.contentdiv_img{
float: left;
width: 200px;
height:180px;
}
</style>
should be on the top page in its head, not on the external page(s).
And this should either be modified or, a different method should be used:
Code:
<script type="text/javascript">
jQuery.noConflict();
//jQuery(document).ready(function() {
// jQuery.tabs("tab_container");
jQuery(function(){
jQuery('#tabs_container').tabs({ remote: true });
});
//});
</script>
Bookmarks