web/assets/js/_utils/img-hyperlink.js

9 lines
148 B
JavaScript

/*
* Find out the <a> tag contains an image and mark it.
*/
$(function() {
const MARK = "img-hyperlink";
$("a:has(img)").addClass(MARK);
});