Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to embed youtube video in magnific popup?

Tags:

i have magnific popup plugin.but it not showing the video on popup How to embed youtube video in magnific popup?

like image 773
Liju Avatar asked Jan 14 '14 11:01

Liju


1 Answers

Check the following link for documentation:

Doc

$(document).ready(function() {     $('.popup-youtube, .popup-vimeo, .popup-gmaps').magnificPopup({         disableOn: 700,         type: 'iframe',         mainClass: 'mfp-fade',         removalDelay: 160,         preloader: false,          fixedContentPos: false     }); });  <a class="popup-youtube" href="http://www.youtube.com/watch?v=0O2aH4XLbto">Open YouTube video</a> 

Hope this helps.

like image 176
Pranita Avatar answered Feb 11 '23 16:02

Pranita