Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- /* Set "_blank" attribute for all social links */
- var social_icons_link = $( ".et-social-icon a" );
- social_icons_link.each( function() {
- $( this ).attr( 'target', '_blank' )
- } );
- /* Add Image Caption (ALT text) to all Images from Gallery Module - set the css class of wpc-gm-caption*/
- var galleryItem = $( '.wpc-gm-caption .et_pb_gallery_item .et_pb_gallery_image' );
- if ( galleryItem.length ) {
- galleryItem.each( function() {
- var img = $( this ).find( 'img' ),
- caption = img.attr( 'alt' );
- $( '<p class="wpc-caption">' + caption + '</p>' ).insertAfter( img );
- } )
- }
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment