<!DOCTYPE html>
<html>
<head>
<script>
function formSubmit()
{
document.getElementById("frm1").submit();
}
</script>
</head>
<body>
<p>Enter some text in the fields below, then press the "Submit form" button to submit the form.</p>
<form action = "">
Auth: <select name = "Auth">
<option value = "Server1">Server-1</option>
<option value = "Server2">Server-2</option>
<option value = "Server3">Server-3</option>
<option value = "Server4">Server-4</option>
</select>
</form>
<form id="frm1" Method="GET" action="logs.html">
Log Number:<input type="text" name="fname"><br>
<input type="button" onclick="formSubmit()" value="Submit">
</form>
</body>
</html>
nagachaitanya 0 Newbie Poster
Recommended Answers
Jump to Post— JorgeM 958Ok, first, you got to give it more than one minute between the time you first ask for help and then ask again.
When submitting a form, you do not actually need to incorporate JavaScript, at least not in this example. Secondly, are you using more than just HTML? Server-side …
All 2 Replies
nagachaitanya 0 Newbie Poster
JorgeM 958 Problem Solver Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.