Popup video video pause when close
1 2 3 4 5 6 7 8 9 10 11 | jQuery( '.wdes-popup-title' ).click( function (){ jQuery(jQuery(this).attr( 'content-id' ) + ' iframe' ).attr( 'src' , id[jQuery(this).attr( 'content-id' ).replace( '#' , '' )] ); }); var id = {}; jQuery( '.wdes-popup-close' ).click( function (){ console.log(jQuery(this).closest( '.wdes-popup-main' ).attr( 'id' )); if ( ! id[jQuery(this).closest( '.wdes-popup-main' ).attr( 'id' )] ){ id[jQuery(this).closest( '.wdes-popup-main' ).attr( 'id' )] = jQuery( '#' + jQuery(this).closest( '.wdes-popup-main' ).attr( 'id' ) + ' iframe' ).attr( 'src' ); } jQuery( '#' + jQuery(this).closest( '.wdes-popup-main' ).attr( 'id' ) + ' iframe' ).attr( 'src' , '' ); }); |