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

learn more… | top users | synonyms (1)

494
votes
25answers
242k views

How to align checkboxes and their labels consistently cross-browsers

This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them ...
343
votes
19answers
373k views

JavaScript post request like a form submit

I'm trying to direct a browser to a different page. If I wanted a GET request, I might say document.location.href = 'http://example.com/q=a'; But the resource I'm trying to access won't respond ...
233
votes
23answers
183k views

Resetting a multi-stage form with jQuery

I have a form with a standard reset button coded thusly: <input type="reset" class="button standard" value="Clear" /> Trouble is, said form is of the multi-stage sort, so if a user fills out ...
211
votes
14answers
12k views

When setting a form's opacity should I use a decimal or double?

I'm new to C# and I want to use a track-bar to change a form's opacity. This is my code: decimal trans = trackBar1.Value / 5000; this.Opacity = trans; When I try to build it, I get this error: ...
192
votes
20answers
129k views

How to handle checkboxes in ASP.NET MVC forms?

This seems a bit bizarre to me, but as far as I can tell, this is how you do it. I have a collection of objects, and I want users to select one or more of them. This says to me "form with ...
163
votes
15answers
84k views

Is there a W3C valid way to disable autocomplete in a HTML form?

When using the xhtml1-transitional.dtd doctype, collecting a credit card number with the following HTML <input type="text" id="cardNumber" name="cardNumber" autocomplete='off'/> will flag a ...
154
votes
10answers
147k views

Submitting a form on 'Enter' with jQuery?

I have a bog-standard login form - an email text field, a password field and a submit button on an AIR project that's using HTML/jQuery. When I hit Enter on the form, the entire form's contents ...
144
votes
12answers
323k views

Check if option is selected with jQuery, if not select a default

Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected. (The select is generated with a maze of PHP functions in an app I ...
107
votes
14answers
48k views

In a django form, How to make a field readonly (or disabled) so that it cannot be edited?

In a django form, how do I make a field read-only (or disabled)? When the form is being used to create a new entry, all fields should be enabled - but when the record is in update mode some fields ...
107
votes
14answers
42k views

How do you overcome the html form nesting limitation

I know that xhtml doesn't support nested form tags and I have already read other answers here in stackoverflow regarding this subject, but I still haven't figured out an elegant solution to the ...
96
votes
30answers
43k views

Is there a Javascript MVC (micro-)framework? [closed]

Are there any client-side Javascript MVC (micro-)frameworks? I have a rather complicated HTML form and it would benefit from the MVC pattern. EDIT: I imagine a good solution would provide the ...
94
votes
2answers
16k views

What is the _snowman param in Ruby on Rails 3 forms for?

In Ruby on Rails 3 (currently using Beta 4), I see that when using the form_tag or form_for helpers there is a hidden field named _snowman with the value of ☃ (Unicode \x9731) showing up. So, what is ...
93
votes
14answers
60k views

Clearing <input type='file' /> using jQuery

Is it possible to clear an <input type='file' /> control value with jQuery? I've tried the following: $('#control').attr({ value: '' }); But it's not working.
87
votes
6answers
148k views

jQuery AJAX submit form

I have a form with name orderproductForm and an undefined number of inputs. I want to do some kind of jQuery.get or ajax or anything like that that would call a page through Ajax, and send along all ...
81
votes
8answers
68k views

How to prevent buttons from submitting forms

In the following page, with Firefox the remove button submits the form, but the add button doesn't. How do I prevent the remove button from submitting the form? <html> <head> <script ...
81
votes
8answers
217k views

Get current date and time in PHP

Which PHP function can return the current date/time?
79
votes
14answers
45k views

Prevent Users from submitting form by hitting enter

I have a survey on a website, and there seems to be some issues with the users hitting enter (I don't know why) and accidentally submitting the survey (form) without clicking the submit button. Is ...
79
votes
5answers
24k views

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 info about the types here). The problem is that Chrome wants to be super helpful and validate these ...
76
votes
2answers
55k views

Jquery - Create hidden form element on the fly

What is the simplest way to dynamically create a hidden input form field using jquery?
75
votes
9answers
44k views

Is it a good practice to use an empty URL for a HTML form's action attribute? (action=“”)

I am wondering if anyone can give a "best practices" response to using blank HTML form actions to post back to the current page. There is a post asking what a blank HTML form action does here and ...
73
votes
3answers
72k views

CSS selector for text input fields?

How can I target my form input fields of type 'text' using CSS selectors? For example- I want all the input text fields in my form to have the same font. Is there a way of doing this without ...
66
votes
12answers
30k views

Google Chrome form autofill and its yellow background

I have design problem with Google Chrome and its form autofill function. If Chrome remembers some login/password it changes a background color to a yellow one. Here are some screenshots: How to ...
62
votes
3answers
31k views

Labels for radio buttons in rails form

My question is similar to this one but for a Rails app. I have a form with some radio buttons, and would like to associate labels with them. The label form helper only takes a form field as a ...
62
votes
4answers
113k views

jquery disable/enable submit button

I have this html: <input type="text" name="textField" /> <input type="submit" value="send" /> How can I do something like this: When the text field is empty the submit should be ...
59
votes
1answer
39k views

Django set default form values

I have a Model as follows class TankJournal(models.Model): user = models.ForeignKey(User) tank = models.ForeignKey(TankProfile) ts = models.IntegerField(max_length=15) title = ...
59
votes
12answers
68k views

Submitting a form by pressing enter without a submit button

Well I am trying to submit a form by pressing enter but not displaying a submit button. I don't want to get into JavaScript if possible since I want everything to work on all browsers (the only JS way ...
58
votes
7answers
14k views

Django Passing Custom Form Parameters to Formset

I have a Django Form that looks like this: class ServiceForm(forms.Form): option = forms.ModelChoiceField(queryset=ServiceOption.objects.none()) rate = ...
58
votes
3answers
10k views

VB.NET - Interrupt form loop and end form

I have a form that goes through an endless loop and processes data. When I click a button that "closes" the form, the form keeps processing even though it is closed. I want the form to completely end ...
52
votes
8answers
60k views

What characters are allowed in email address?

I'm not asking about full email validation. I just want to know what are allowed characters in user-name and server parts of email address. This may be oversimplified, maybe email adresses can take ...
52
votes
2answers
73k views

jQuery - change form action based on selection?

I'm trying to change the form action based on the selected value from a dropdown menu... Basically, the html looks like this: <form class="search-form" id="search-form" method="post" ...
50
votes
11answers
23k views

Tri-state Check box in HTML?

There is no way to have a tri-state check button (yes, no, null) in HTML, right? Are there any simple tricks or work-arounds without having to render the whole thing by oneself?
50
votes
2answers
19k views

Proper way to handle multiple forms on one page in Django

I have a template page expecting two forms. If I just use one form, things are fine as in this typical example: if request.method == 'POST': form = AuthorForm(request.POST,) if ...
47
votes
7answers
25k views

Define css class in django Forms

Assume I have a form class SampleClass(forms.Form): name = forms.CharField(max_length=30) age = forms.IntegerField() django_hacker = forms.BooleanField(required=False) Is there a way ...
46
votes
10answers
37k views

Why use definition lists (DL,DD,DT) tags for HTML forms instead of tables?

I've come across a few examples recently that do things like: <dl> <dt>Full Name:</dt> <dd><input type="text" name="fullname"></dd> <dt>Email ...
45
votes
7answers
44k views

jQuery Change event on an <input> element - any way to retain previous value?

I've been searching around this morning and I'm not finding any simple solutions... basically, I want to capture a change in an input element, but also know the previous value. Here's a change event ...
41
votes
5answers
23k views

Rails hidden field

I wanna do something like this in rails Here is what I have so far in rails: <%= form_for @order do |f| %> <%= f.hidden_field :service, "test" %> <%= f.submit %> <% end ...
41
votes
5answers
49k views

jquery/js — How do I select the parent form based on which submit button is clicked?

I have a web page with 3 forms on it. Not nested, just one after the other (they are almost identical, just one hidden variable that's different). A user will only fill in one form, and I'd like to ...
40
votes
3answers
38k views

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 markup: <input type="radio" id="rad" name="radio"/> <label for="rad">A ...
38
votes
9answers
52k views

how to check a radio button with jQuery?

I try to check a radio button with jQuery. Here's my code : <form> <div id='type'> <input type='radio' id='radio_1' name='type' value='1' /> <input ...
38
votes
10answers
45k views

Jquery toggle event is messing with checkbox value

I'm using Jquery's toggle event to do some stuff when a user clicks a checkbox, like this: $('input#myId').toggle( function(){ //do stuff }, function(){ //do other stuff } ); The problem is that ...
38
votes
10answers
15k views

Why is textarea filled with mysterious white spaces?

I have a simple text area in a form like so: <textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"> <?php if($siteLink_val) echo $siteLink_val;?> ...
37
votes
5answers
23k views

Two submit buttons in one form

I have two submit buttons in a form. How do I determine which one was hit serverside?
37
votes
6answers
27k views

HTML5 form required attribute. Set custom validation message?

I've got the following HTML5 form: http://jsfiddle.net/nfgfP/ Currently when I hit enter when they're both blank a popup box appears saying "Please fill out this field" how would I change that ...
36
votes
21answers
18k views

What's the best UI for entering date of birth?

What is the best method for date of birth selector? 3 text inputs (month / day / year) or one mask input. User MUST use keyboard 3 select boxes. User can use keyboard or mouse. One nice datepicker. ...
36
votes
15answers
43k views

When should I use GET or POST method? What's the difference between them?

I think the title is my question. I would like to know what's the difference when using GET or POST method in php. Which one is more secure? What are dis/advantages of each of them? Thanks EDIT: I ...
36
votes
3answers
52k views

How to change an element's title attribute using jQuery

I have an form input element and I want to change it's title attribute. This has got to be easy as pie but for some reason I cannot find how to do this. How is this done and where and how should I ...
36
votes
12answers
26k views

Disable select form field but still send the value

I have a select form field that I want to mark as "readonly", as in the user cannot modify the value, but the value is still submitted with the form. Using the disabled attribute prevents the user ...
36
votes
5answers
25k views

jQuery - select all text from a textarea

How can I make it so when you click inside a textarea, its entire content gets selected? And eventually when you click again, to deselect it.
36
votes
7answers
53k views

HTML form with two submit buttons and two “target” attributes

Hi I have one html <form>. The form has only one action="" attribute. However I wish to have 2 different target="" attributes depending on which button you click to submit the form. This is ...
36
votes
11answers
13k views

CSS Grid System for Forms (Multi-Column)

For future reference here is the final result with pixel perfect precision: The CSS code: ._25 { width: 21%; display: inline; float: left; margin-left: 2%; margin-right: 2%; } ...

1 2 3 4 5 609