I have two JQuery functions one to display the Fancybox and second one to create the owl-carousel, I want the awl carousel function to run after the fancybox function runs.
$(document).ready(function() {
$(".fancybox1").fancybox({
content : '<div class="col-md-6"><div id="fancybox12" class="owl-carousel owl-theme"><div class="item"><img src="img/portfolio/102.jpg" class="img-responsive" alt="..."></div></div></div><div class="text-center col-md-6"><h1> T-Shirts & Fabric Printing </h1></div> '
}),
$("#fancybox12").owlCarousel({
navigation : false, // Show next and prev buttons
slideSpeed : 300,
paginationSpeed : 400,
singleItem:true
});
});
But I'm am unable to get the callback to work.Please help me. Thanks