Send Information to Special Billers
Modifying Your Template
Sample Code
Create JavaScript Function
function submitSpecial(){
if (document.getElementById("join_username").value==''){
alert('Please provide a username');
return false;}
elseif (document.getElementById("join_password").value==''){
alert('Please provide a password');
return false;}
elseif (document.getElementById("join_email").value==''){
alert('Please provide a email address');
return false;}
else {
document.getElementById("special_username").value = document.getElementById("join_username").value;
document.getElementById("special_password").value = document.getElementById("join_password").value;
document.getElementById("special_email").value = document.getElementById("join_email").value;
document.getElementById("special_form").submit();
}
}Add IDs
Add ID Attribute to Join Form
Add Hidden Fields
Last updated
Was this helpful?