Skip to content

Instantly share code, notes, and snippets.

@leowebguy
Created November 16, 2015 21:18
Show Gist options
  • Save leowebguy/7d4b708695ae81f0b622 to your computer and use it in GitHub Desktop.
Save leowebguy/7d4b708695ae81f0b622 to your computer and use it in GitHub Desktop.
Get alt attribute and append title to the same element (jquery)
$(document).ready(function($){
$(".wpb_image").each(function() {
var title = $(this).find('img').attr('alt');
$(this).append('<div class="wpb_image_title"><h4>'+title+'</h4></div>');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment