htmly/system/resources/htmly.js
2014-11-10 08:19:38 +01:00

10 lines
318 B
JavaScript

(function ($) {
$(document).ready(function() {
$('.teaser-body img, .post-body img').each(function() {
var currentImage = $(this);
currentImage.wrap("<a class='img-wrap' title='" + currentImage.attr("alt") + "' data-lightbox='lightbox' href='" + currentImage.attr("src") + "'></a>");
});
});
})(jQuery);