Quote:
Originally Posted by maidos
i want the rotate to have a slower update time?
|
you can adjust the rotation by editing the smnlikquick template and setting the mytabs.init(5000) to something higher. The time is in milliseconds, so 5000=5 seconds .. if you want to slow it down to 10 seconds, make it 10000. If you want to totally STOP the rotation just remove the numbers ie mytabs.init() That will make it so that they manually have to select a tab..
Code:
<script type="text/javascript">
var mytabs=new ddajaxtabs("tabs", "divcontainer")
mytabs.setpersist(false)
mytabs.setselectedClassTarget("link")
mytabs.init(5000)
</script>