Text Box: copy data to other fields

eleo_ 09 Feb, 2016
Hi, i've two text box
the first a textbox field such as EMAIL
the second a readonly textbox such as LINK.

i would like to popolate the field "LINK" with a dynimic url from email field as http://www.pippo.com/?mail=EMAIL

How can i do it?
GreyHead 09 Feb, 2016
Hi eleo_,

Do you need to do this in the browser to show the link immediately? Or after the form submits to send it in a email . . . ?

Bob
eleo_ 09 Feb, 2016
both.... for now i resolve with a costume code

<div class="gcore-input gcore-display-table" id="fin-receiver-email">
<input name="receiver-email" id="receiver-email" value="" placeholder="Receiver's email address" class="validate['required','email'] form-control A" title="" style="" data-inputmask="" data-load-state="" data-tooltip="" type="text"onkeyup="link.value='http://www.pippo.com/?mail='+this.value;" /></div></div>
This topic is locked and no more replies can be posted.