using flips plugin with jqBarGraph plugin
Hi all,
I am using the flips plugin (
link) to rotate parts of the screen on a time interval works great. I am also using jqBarGraph plugin (
link) to show Graphs on the website works also fine.
But when I try to combine these two plugins it does not seem to work anymore

.
some code:
- <script type="text/javascript">
- arrayOfDataMulti = new Array(
- [[22,1,8,3],'']
- );
- $(document).ready(function () {
- $('#TEST').html();
- $('#TEST').jqBarGraph({
- data: arrayOfDataMulti,
- colors: ['#242424','#437346'] ,
- legends: ['Major','Minor'],
- legend: true,
- height: 200,
- width: 170,
- legendWidth: 100,
- type: false,
- showValues: false
- });
- });
-
- $(document).ready(function () {
- $('#flips1').after( '<div class="to-flips1" id="flips1">' + $('#flips1').html() + '</div>');
- $('#flips1').flips( { autorun_delay:1000, direction: 'right' } );
- });
- </script>
- <!-- start flips JIRA -->
- <div class="to-flips1" id="flips1">
- <div class="content">
-
- <div class="block">
- <div class=""> Test bar </div>
- <div class="">
- <div class="block">
- <div id="TEST"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="navigation"></div>
- </div>
- <!-- end flips JIRA -->
someone any ideas??
Thanks