Guest User

Untitled

a guest
Jan 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // ================ Wrap img in content HTML5 tags ================
  2. var imgContent = $('.page__body.textblock a.popup-video img');
  3. imgContent.each(function() {
  4. $this = $(this);
  5. var imgTitle = $this.attr('title');
  6. if (imgTitle) {
  7. $this.parent('.popup-video').wrap('<figure class="content-image"></figure>');
  8. $this.parent('.popup-video').append('<figcaption class="content-image__title">' + imgTitle + '</figcaption>');
  9. }
  10. });
Add Comment
Please, Sign In to add comment