I have a link that populate on my forms directly from my Repository. I want to change the link name on forms and display Click Here instead of the whole link. Can you help me please? Thanks.
Question
Question
Replies
replied on November 16, 2023
You would need to use a Custom HTML field for that. It looks like your screen shot is of a table. If that is the case, you could keep the Link to CV column, but hide it and add a Custom HTML field that creates the link. Something like this:
<a href="LinktoCVVariable">Click Here</a>
Replace the LinktoCVVariable with the actual variable from Forms.
2
0
replied on November 16, 2023
I have used a javascript and it sends me back to the form again
Look at the link at the bottom of the page
$(document).ready(function(){
$('.link [type="text"]').each(function(e, el){
var link = $(el).val();
$(el).replaceWith($('<a href="' + link + '" target="_blank">Click Here</a>'));
});
});
0
0
You are not allowed to follow up in this post.