1
Hi
I have integrate
NivoSlider in XOOPS site using custom block
its working fine
but now i have installed the mytabs modules, i put some publisher blocks in the tabs
and i noticed mytabs (mootools) and nivoslider (jquery) is not working properly together when activated in the same page
when the nivoslider slides change from one slide-to slide user sometimes unable to click the title link of the recent publisher article block inside the tab and have to refresh the page to make it clickable..sometimes it will be ok..sometime it will be not
i search on the internet and got to know Mootools and jQuery both use $. so we can’t use both unless we save off the jQuery $ using $.noConflict.
i have this nivoslider code where i put in custom block
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider();
});
script>
i tried to change it to like this but it is not working.. slideshow is not showing
<script type="text/javascript">
jQuery.noConflict();
jQuery(window).load(function() {
jQuery('#slider').nivoSlider();
});
script>
anyone have a clue how to make this work together ?
-------------------------
My tabs version 2.2 (Final)
Publisher 1.02 Beta 3 (2014/6/21)
NivoSlider 3.2
XOOPS Version XOOPS 2.5.7
PHP Version 5.4.30
mySQL Version 5.5.37-cll
Server API cgi-fcgi
OS Linux