Remove Link from Signature Fields in Details Components

Step 1: Add a CSS Class the the field


Step 2: Find the Details Component ID

Step 3: Add JavaScript code to your page (remember to change ‘component_ID’ to the ID from step 2)

TB.render('component_ID', function(data) {
    data.ele.find('.remove-link a').removeAttr('href');
});