Top "Forms" questions

A form is essentially a container that can be used to hold any amount of any subset of several types of data.

How do I capture response of form.submit

I have the following code: <script type="text/javascript"> function SubmitForm() { form1.submit(); } function ShowResponse() { } </script> . . . &…

javascript forms dom-events form-submit
jQuery - Create hidden form element on the fly

What is the simplest way to dynamically create a hidden input form field using jQuery?

javascript jquery forms hidden-field
Use CSS to automatically add 'required field' asterisk to form inputs

What is a good way to overcome the unfortunate fact that this code will not work as desired: <div …

css forms validation standards
How to allow only one radio button to be checked?

{% for each in AnswerQuery %} <form action={{address}}> <span>{{each.answer}}</span><input type=…

html django forms
How to make <label> and <input> appear on the same line on an HTML form?

I am creating a registration form for a website. I want each label and its corresponding input element to appear …

html css forms
jquery disable form submit on enter

I have the following javascript in my page which does not seem to be working. $('form').bind("keypress", function(e) { …

javascript jquery forms form-submit
How to prevent form resubmission when page is refreshed (F5 / CTRL+R)

I have a simple form that submits text to my SQL table. The problem is that after the user submits …

php html forms post form-submit
How can I submit a POST form using the <a href="..."> tag?

How can I submit a POST form to showMessage.jsp using just the <a href="..."> tag? <form …

html forms jsp
Disable validation of HTML5 form elements

In my forms, I'd like to use the new HTML5 form types, for example <input type="url" /> (more …

validation forms html input
PHP form - on submit stay on same page

I have a PHP form that is located on file contact.html. The form is processed from file processForm.php. …

php html forms submit