Hi,
Thank you for the help!
-- I want to pass the form input that the user has entered to the variables in the js function so that it can validate the values to ensure it is appropriate to be used as an email address. My end goal is to program the form to accept a phone number(input tag) and combine it with the text of the option selected of the drop-down menu, so that it can be used as an email address. Once submitted I want to pass the address to the js to ensure it is formatted correctly and then once it is send it to a php file to be emailed to a gmail account i set up. In short a subscription page but for phone numbers that enters it into a contact list in gmail. I am using Dreamweaver CS6. what am i missing and what do i need to tweak?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Subscribe Page</title><script type="text/javascript"> function validate(number,carrier) { var number = document.getElementById("number").value var carrier = document.getElementById("carrier").value if (number=="") { alert("please enter phone number, it should be 10 numbers long") return false; } else function join(number,carrier) { return number + carrier; return true; } var myresult = number.concat("carrier"); document.write("myresult"); return myresult;}</script></head>
<body>
<form action="" method="post" id="subscribeForm" >Phone number:<input name="number" type="text" /> <select onchange="validate(number)" id="carrier"> <option id="verizon"value="@vtext.com">verizon</option> <option id="att" value="@txt.att.net">att</option> </select>
<input type="submit" onclick="formsendscript.php" /> </form></body></html>
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.