+ 1
How to create a link to another web if u clik maybe submit
maybe u r creating a web and u choose male radio if u click submit and if u want it take it somewhere u want
2 Respostas
+ 5
put something like this in form
<input type="submit" onsubmit="return func()">
<script>
function func(){
if (document.getElementById("sex").value == "male"){
return true;
}else{return false}
</script>
+ 3
<a href="https:\\www.example.com">exampletext</a>