•How can we submit a form without a submit button
Answers were Sorted based on User's Feedback
Answer / sei thu htun
You can use single button and use javascript for submit
eg.
<script type="text/javascript">
function submitform()
{
document.getElementById("your_form_id").submit();
}
</script>
//in html form
<input type="button" value="Submit" onclick="submitform();"/>
| Is This Answer Correct ? | 22 Yes | 2 No |
Answer / bharat pradhan
<script type="text/javascript">
function pick()
{
document.form1.action="submit.php";
document.form1.submit();
}
</script>
<form name="form1" id="form1" method="post" onsubmit="pick()">
<input type="text" name="T1" id="T1">
</form>
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / prantik gautam
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<title>submit a form without a button</title>
</head>
<body ondblclick="document.frm_nm.submit();">
<form action="" method="post" name="frm_nm">
<input type="text" id="txt" size="25"/>
</form>
</body>
</html>
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / tejash gajjar
You can use single button and use javascript for submit
eg.
<script type="text/javascript">
function submitform()
{
document.getElementById("your_form_id").submit();
}
</script>
//in html form
<input type="button" value="Submit" onclick="submitform
();"/>
| Is This Answer Correct ? | 2 Yes | 1 No |
How to return ascii value of character in php?
Is it possible to remove the html tags from data?
Explain how to execute a php script using command line.
Which is correct about mysqli and pdo?
What is the correct syntax of mail() function in php?
How to check whether cookies are disbled or not in the browser ? If that is the case how do you handle the sessions ?
What is the use of hooks?
What happens if an expected input field was not submitted?
Explain what is the function file_get_contents() usefull for?
What does PEAR stands for?
What is the difference between runtime exception and compile time exception?
Explain what is memcache?