Answer the question
In order to leave comments, you need to log in
How to make friends two jquery on one page?
Hello.
The task is to add an OVLcarousel to the site.
Added.
Does not work.
There is jQ 1.8.2 on the page, I am
connecting another one to replace it for OVL, the gallery, which is located above the carousel, has stopped working.
I put back jQ1.8.2 photo gallery works, ovl does not work.
Tried many different ones, doesn't help.
Can I put my own jQ for a separate section (for the carousel)?
thank!
<script src="js/jquery-2.1.4.min.js" type="text/javascript"></script>
<script>
$slider = $;
</script>
<script src="js/jquery-1.8.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
var owl = $slider('.owl-carousel');
owl.owlCarousel({
items:5,
loop:true,
margin:50,
autoplay:true,
autoplayTimeout:2000,
autoplayHoverPause:true,
responsive: {
320: {
items: 2,
margin:20
},
768: {
items: 3
},
1241: {
items: 5
}
}
});
$slider('.play').on('click',function(){
owl.trigger('autoplay.play.owl',[2000])
})
$slider('.stop').on('click',function(){
owl.trigger('autoplay.stop.owl')
})
</script>
Answer the question
In order to leave comments, you need to log in
The correct solution would be to include one version of jQuery and the jQuery Migrate Plugin and fix the issues he is talking about.
If you want crutches, you can
either merge them into one jquery file And wrap the plugin with a function that you immediately execute and check no global variables are declared inside it, it is likely that it can work
Or another simpler option: go through autocorrect for jQuery and the plugin, replace jQuery there with myQuery, And connect what happened, and, accordingly, do not forget about $.noConflict();
ruseller.com/jquery.php?id=61
<script type="text/javascript" src="other_lib.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$.noConflict();
jQuery(document).ready(function($) {
// используем jQuery с $
});
// используем другую библиотеку с $
</script>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question