• Resolved Francis

    (@emolotel)


    Is it possible via HTML content to link to a web page?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @emolotel

    Yes of course, you can use the HTML code you prefer, for example:

    
    <a href="https://cff.dwbooster.com">Calculated Fields Form</a>
    

    Best regards.

    Thread Starter Francis

    (@emolotel)

    and via a radio button selection is it possible if you select an option to link a web page?

    Plugin Author codepeople

    (@codepeople)

    Hello @emolotel

    You can insert a calculated field, and depending on the value selected in the radio button, redirect the user to a page or another.

    For example, assuming the radio button field is: fieldname1 and it has two options: A and B

    In this case you can insert a calculated field in the form to be used as auxiliary (you can tick the checkbox in its settings for hiding the field), with an equation similar to:

    
    (function(){
    if(fieldname1 == 'A') document.location.href="https://www.yourwebsite.com/page-a";
    if(fieldname1 == 'B') document.location.href="https://www.yourwebsite.com/page-b";
    })()
    

    and that’s all.

    If you need additional help implementing your project, you should contact us through our private website: Contact Us

    Best regards.

    Thread Starter Francis

    (@emolotel)

    Thanks PERFECT !!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Link web page’ is closed to new replies.