Obviously you have mootools & Jquery conflict.Easy to solve just google it
Hi all !I am using Elxis Nautilus and I have put an external audio player in a seperate folder, in order to play mp3 files within articles.Unfortunately, the user guide of this audio player says to put the following line in my index.php page:<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>If I put this line, then IOS slider module is NOT working... but player does !If I don't put it, then IOS slider module is working fine, but not the player...Is there any solution to this ?Thank you in advanceChristos
<p>jQuery sets this paragraph's color to red but MooTools sets the border color.</p> <script type="text/javascript" src="jquery-1.3.js"></script> <script type="text/javascript"> //no conflict jquery jQuery.noConflict(); //jquery stuff (function($) { $('p').css('color','#ff0000'); })(jQuery); </script> <script type="text/javascript" src="moo1.2.js"></script> <script type="text/javascript"> //moo stuff window.addEvent('domready',function() { $$('p').setStyle('border','1px solid #fc0'); }); </script>