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.

Using JQuery - preventing form from submitting

How do I prevent a form from submitting using jquery? I tried everything - see 3 different options I tried below, …

jquery forms
CSS selector for a checked radio button's label

Is it possible to apply a css(3) style to a label of a checked radio button? I have the following …

forms css
How to get form input array into PHP array

I have a form like the one below which is posted to contacts.php, and the user can dynamically add …

php arrays forms
submitting a GET form with query string params and hidden params disappear

Consider this form: <form action="http://www.blabla.com?a=1&b=2" method="GET"> <input type="hidden" …

html forms submit
Reactjs - Form input validation

My Contact page form is as follows, <form name="contactform" onSubmit={this.contactSubmit.bind(this)}> <div className="…

javascript node.js reactjs forms validation
Limit number of characters allowed in form input text field

How do I limit or restrict the user to only enter a maximum of five characters in the textbox? Below …

html forms input textbox
What is the boundary in multipart/form-data?

I want to ask a question about the multipart/form-data. In the HTTP header, I find that the Content-Type: multipart/…

html http forms
How do I change the color of radio buttons?

I mean, a radio button itself consists of a round shape and a dot at the center (when the button …

html css forms radio-button
How to get HTML 5 input type="date" working in Firefox and/or IE 10

I find it odd that input type="date" is still not supported in Firefox after all of this time. In …

html forms jquery-ui internet-explorer firefox
How to disable input conditionally in vue.js

I have an input: <input type="text" id="name" class="form-control" name="name" v-model="form.name" :disabled="validated ? '' : …

javascript html forms vue.js