Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- if ( $( '.popup-youtube' ).length ) {
- $( '.popup-youtube' ).magnificPopup( {
- type: 'iframe',
- iframe: {
- markup: '<div class="mfp-iframe-scaler">' +
- '<div class="mfp-close"></div>' +
- '<iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe>' +
- '<div class="mfp-title">Some caption</div>' +
- '</div>'
- },
- callbacks: {
- markupParse: function( template, values, item ) {
- values.title = item.el.attr( 'title' );
- }
- }
- } );
- }
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment