planeboy747
Technical User
I'm trying to have the last name and first name (lname1 and fname1) value fields concataneted in a form confirmation page with a comma, so it appears (Doe, John), here is my code:
function doConfirm() {
var f = document.forms['request'];
f.elements['confirmation1'].value = f.elements['lname1+","+ fname1'].value;
Am I doing this right?
function doConfirm() {
var f = document.forms['request'];
f.elements['confirmation1'].value = f.elements['lname1+","+ fname1'].value;
Am I doing this right?