You are viewing limited content. For full access, please sign in.

Question

Question

change link name on forms

asked on November 15, 2023

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.

0 0

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

Look at the link shown below at the bottom of the page
It directs me to the form again.

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.

Sign in to reply to this post.