Tagged Questions

HTML forms are used to pass data to a server. A form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more.

learn more… | top users | synonyms (1)

224
votes
22answers
126k 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 ...
157
votes
17answers
124k 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 ...
137
votes
17answers
205k 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 ...
133
votes
18answers
79k 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 ...
95
votes
12answers
209k 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 ...
73
votes
15answers
31k 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 ...
72
votes
27answers
27k views

Is there a Javascript MVC (micro-)framework?

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 ...
60
votes
10answers
61k 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 ...
54
votes
4answers
9k views

vb.net - Interrupt form loop and end form

Hey, 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 ...
53
votes
10answers
24k 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 ...
52
votes
11answers
18k 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 ...
41
votes
2answers
6k views

What is the _snowman param in Rails 3 forms for?

In 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 this ...
32
votes
10answers
38k 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 ...
30
votes
6answers
8k 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 = ...
29
votes
4answers
5k 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 ...
28
votes
6answers
20k views

MVC - Passing Data with RedirectToAction()

What I'm attempting to do is take the data entered into an MVC user form and submit it back to the user in a different view. I have a private variabled declared in the class: IList<string> ...
28
votes
11answers
24k 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 ...
27
votes
11answers
6k 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%; } ...
26
votes
7answers
10k 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 ...
26
votes
1answer
17k 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 = ...
25
votes
8answers
10k 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 ...
24
votes
5answers
1k views

A PHP and jQuery form creation and validation library available?

Original Question Is there a well tested and preferably mature library out there for creating forms in PHP with both client side (this is where the jQuery comes in) and server side validation? ...
24
votes
20answers
8k 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. ...
23
votes
8answers
2k views

Best way to layout in HTML forms?

I want to display an HTML form containing labelled text fields, like this: First Name: [_____________] Last Name: [_____________] Date of Birth: [________] My obvious approach ...
23
votes
9answers
995 views

Good Form Security - no CAPTCHA

Is there a good method of form security that does not involve CAPTCHA? CAPTCHA is so annoying, but I need security because I am getting form spam. My form is PHP.
23
votes
10answers
9k 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?
23
votes
16answers
19k 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 ...
22
votes
2answers
11k views

Jquery - Create hidden form element on the fly

What is the simplest way to dynamically create a hidden input form field using jquery?
22
votes
3answers
12k views

Labels for radio buttons in rails form

Same as http://stackoverflow.com/questions/658689/how-to-associate-labels-with-radio-buttons but for a rails app. I have a form with some radio buttons, and would like to associate labels with them. ...
22
votes
7answers
11k 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 ...
21
votes
2answers
8k 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 ...
20
votes
4answers
8k views

Unobtrusive dynamic form fields in Rails with jQuery

I'm attempting to get over the hurdle of dynamic form fields in Rails -- this appears to be something the framework doesn't handle very gracefully. I'm also using jQuery in my project. I have jRails ...
20
votes
6answers
15k 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 ...
20
votes
6answers
20k 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.
19
votes
5answers
388 views

Force application close on system shutdown

I have a Windows Forms application that when the Main Window is closing, it displays a basic dialog box, confirming the action. If the user decides to cancel the application exit is cancelled. ...
19
votes
11answers
1k views

Clear form button in HTML…do we really need this?

I usually add the clear form button to HTML forms by default, but tonight I had what alcholics call a "moment of clarity". Why the hell do we add this? In all my years of using the internet I have ...
19
votes
8answers
6k views

Possible bug in ASP.NET MVC with form values being replaced

I appear to be having a problem with ASP.NET MVC in that, if I have more than one form on a page which uses the same name in each one, but as different types (radio/hidden/etc), then, when the first ...
18
votes
5answers
2k views

Best JavaScript solution for client-side form validation and interaction?

Our web forms are really complex. What's a great solution for extensible form validation, preferably one that works with jQuery? Background: Our site has a bit of Ajax, but the real focus is on user ...
18
votes
3answers
4k views

Django equivalent of PHP's form value array/associative array

In PHP, I would do this to get name as an array. <input type"text" name="name[]" /> <input type"text" name="name[]" /> Or if I wanted to get name as an associative array: <input ...
17
votes
3answers
371 views

Wiki or Markdown-like syntax for simple forms?

Is there any simple language similar to Markdown or one of the Wiki Markups that gets converted into HTML form elements? For example: name* = ___________ sex = (x) Male () Female phones = [] ...
17
votes
10answers
19k views

HTML: 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 ...
17
votes
4answers
23k 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 ...
16
votes
4answers
1k views

Why not always use enctype=“multipart/form-data”?

When building HTML forms why do we not always use enctype="multipart/form-data"?
16
votes
6answers
12k 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 ...
16
votes
4answers
8k views

Django and fieldsets on ModelForm

I know you can specify fieldsets in django for Admin helpers. However, I cannot find anything useful for ModelForms. Just some patches which I cannot use. Am I missing something? Is there a way I ...
16
votes
2answers
8k views

Retrieving HTTP status code from loaded iframe with Javascript

I used the jQuery Form plugin for asynchronous form submission. For forms that contain files, it copies the form to a hidden iframe, submits it, and copies back the iframe's contents. The problem is ...
15
votes
4answers
1k views

How can I equalize the heights of text input fields?

What is the best way to equalize the height of my <select..> elements and my <input type="text"..> elements? It's proving difficult because of differences in box-sizing models. Google ...
14
votes
3answers
3k 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 ...
14
votes
6answers
593 views

POST vs post, GET vs get

I realize that both will work, but is one more correct than the other? <form method="POST" /> vs. <form method="post" /> Why use one or the other?
14
votes
2answers
10k views

Adding rows dynamically with jQuery

I'm building a form where I need multiple optional inputs, what I have is basically this: Every time a user presses the plus button a new row of form inputs should be added to the form, how can I ...

1 2 3 4 5 298