I want to replace the long URL display on a Link field with a favicon.
This JS works on the File field type, but not on the Link field type:
//Change all document links with a paper clip//
$(document).on(‘knack-view-render.any’, function(event, view, data) {
$(“a.kn-view-asset”).html(“”);
});
I need similar JS for a Link type field.
Tx in advance!!!