EduardET

Untitled

Mar 5th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         var map = $( '<iframe src="https://www.google.com/maps/d/embed?mid=1pJe-sVxzQyk0zf1kDrBPQXXFG5DcntmF" width="640" height="480"></iframe>' ),
  5.             tabsControls = $( '.wpc-tabs .et_pb_tabs_controls a' );
  6.         tabsControls.each( function() {
  7.             $( this ).click( function() {
  8.                 var cclass = $( this ).parent().attr( 'class' );
  9.                 tab = $( '.wpc-tabs .et_pb_all_tabs .et_pb_tab.' + cclass + ' #map-wrapper' );
  10.                 if ( tab.length ) {
  11.                     tab.prepend( map );
  12.                 }
  13.             } )
  14.         } )
  15.     } );
  16. } )( jQuery );
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment