The tag has no wiki summary.

learn more… | top users | synonyms (1)

189
votes
18answers
247k 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 ...
179
votes
19answers
146k 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 ...
144
votes
19answers
93k 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 ...
34
votes
7answers
10k 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 = ...
96
votes
16answers
43k 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 ...
64
votes
12answers
24k 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 ...
67
votes
11answers
29k 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 ...
81
votes
32answers
32k 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 ...
32
votes
6answers
27k 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.
31
votes
10answers
15k 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 ...
2
votes
1answer
2k views

How to show a modal form on top of its owner form (its owner is set to fsStayOnTop or not), just as TOpenDialog does

Summarization: Please see the helpful comments below from Craig and Sertac. ====================================================== As shown in the following minimized code, TForm10 is set to be ...
17
votes
11answers
31k views

Setting the character encoding in form submit for Internet Explorer

I have a page that contains a form. This page is served with content type text/html;charset=utf-8. I need to submit this form to server using ISO-8859-1 character encoding. Is this possible with ...
3
votes
2answers
2k views

Logging In To Joomla 1.5 Using External Form (not within joomla folder, but on same server)

I currently have a Joomla 1.5 installation, as well as another website. They both reside on the same web server. They are in different folders within the wwwroot directory, however. I would like to ...
112
votes
12answers
247k 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 ...
80
votes
10answers
82k 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 ...
34
votes
10answers
41k 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 ...
5
votes
3answers
8k views

Multiple objects in a Rails form

I want to edit multiple items of my model photo in one form. I am unsure of how to correctly present and POST this with a form, as well as how to gather the items in the update action in the ...
10
votes
4answers
4k views

MS MVC form AJAXifying techniques

I'm looking for most elegant way to ajaxify my forms (with jQuery). How do you do this?
5
votes
10answers
15k views

How can I close a login form and show the main form without my application closing?

I have two forms in my project (Login and Main). What I'm trying to accoomplish is, if the login is successful, I must show the Main form and close the Login form. I have this method in Login form ...
1
vote
3answers
612 views

Controlling form elements from a different thread in Windows Mobile

Trying to get a thread to change form controls in Windows Mobile. Throws an unsupported exception. Does this mean it cant be done at all? If not, how do I go about this? Forms are created in the ...
12
votes
6answers
16k views

Prevent Back button from showing POST confirmation alert

I have an application that supplies long list of parameters to a web page, so I have to use POST instead of GET. The problem is that when page gets displayed and user clicks the Back button, Firefox ...
20
votes
8answers
7k 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 ...
14
votes
7answers
6k views

ENTER key on a FORM with a single Input Field, will automatically SUBMIT with GET

Why is it that a form with a single input field will reload the form when the user enters a value and presses the Enter key, and it does not if there are 2 or more fields in the form. I wrote a simple ...
9
votes
11answers
2k views

Is it acceptable to use tables for forms? Or is it still more correct to use divs?

I'm wondering whether it's acceptable to use tables for forms. Strictly speaking, name/value pairs are tabular data, aren't they? And a form is just a user customisable set of name/value pairs. So is ...
4
votes
1answer
2k views

Submit pdf form fields to a HTTP POST request

I've made a pdf form in Adobe Acrobat. Now I want to make a button that submits the form to a HTTP POST request. I have searched for about 4 hours, but I have not found an example to do this. Here I ...
29
votes
2answers
10k 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 ...
131
votes
13answers
9k 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: ...
25
votes
10answers
27k 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 ...
11
votes
8answers
41k views

Open Fancybox (or equiv) from Form input type=“submit”

is there a way to get a fancybox (http://fancy.klade.lv/) or any other lightbox from submitting a FORM (with an image button)? HTML looks like this: <form action="/ACTION/FastFindObj" ...
14
votes
8answers
13k views

Submit an HTML form with empty checkboxes

I have an HTML form - with PHP, I am sending the data of the form into a MySQL database. Some of the answers to the questions on the form have checkboxes. Obviously, the user does not have to tick all ...
11
votes
22answers
22k views

jquery html attribute not working in IE

I am using country and state dropdowns in my form. Whenever the user selects the country in the dropdown, the respective states of the country will populate in the states dropdown. I am populating ...
14
votes
5answers
39k views

jquery disable/enable submit button

i have this hmtl: <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 ...
27
votes
7answers
22k 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 ...
7
votes
10answers
3k views

GET vs. POST Best Practices

For my web application (PHP/MYSQL), I show a list of items and a link on each row to delete the item. Right now, the link is <a href='item.php?id=3&action=delete'>Delete Item</a> ...
3
votes
3answers
2k views

MVC Form Validation on Multiple Fields

How would I go about having multiple textboxes on an MVC 3 form treated as one for the purposes of validation? It's a simple phone number field with one textbox for area code, one for prefix and one ...
6
votes
6answers
13k views

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" name="c" value="3" /> </form> When submitting this form (a GET form) ...
8
votes
6answers
4k views

Post the checkboxes that are unchecked

I've got a load of checkboxes that are by default checked. My users will probably uncheck a few of the checkboxes (if any) and leave the rest of them checked. Is there any way to get the checkboxes ...
4
votes
4answers
3k views

Retrieve current URL from C# windows form

I have been designing a program using Visual C# and have came across an issue with making my program interact with web browsers. Basically what I need is to retrieve the URL address from a web browser ...
1
vote
4answers
4k views

C# - Make a borderless form movable?

Is there a way to make a form that has no border (FormBorderStyle is set to "none") movable when the mouse is clicked down on the form just as if there was a border? Thanks.
32
votes
10answers
28k 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 ...
7
votes
4answers
6k views

How to programmatically log in to a website to screenscape?

I need some information from a website that's not mine, in order to get this information I need to login to the website to gather the information, this happens through a HTML form. How can I do this ...
14
votes
2answers
9k views

Submitting a multidimensional array via POST with php

I have a php form that has a known number of columns (ex. top diameter, bottom diameter, fabric, colour, quantity), but has an unknown number of rows, as users can add rows as they need. I've ...
13
votes
4answers
1k views

accepts_nested_attributes_for with find_or_create?

I'm using Rails' accepts_nested_attributes_for method with great success, but how can I have it not create new records if a record already exists? By way of example: Say I've got three models, Team, ...
36
votes
2answers
19k views

Jquery - Create hidden form element on the fly

What is the simplest way to dynamically create a hidden input form field using jquery?
19
votes
4answers
6k 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 ...
18
votes
9answers
22k 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 ...
9
votes
5answers
10k views

How to escape apostrophe or quotes on a JSP ( used by javascript )

I have a user form. If the user types in a string with ' or " as part of it I have no problem. The form is submitted and saved correctly to the DB. My problem is when I reload the page (all entries ...
7
votes
3answers
10k views

The form component needs to have a UIForm in its ancestry. Suggestion: enclose the necessary components within <h:form>

Here is my form: <form action="j_security_check"> <h:panelGrid columns="2" bgcolor="#eff5fa" cellspacing="5" frame="box" styleClass="center"> <h:outputLabel value="User ...
2
votes
4answers
28k views

jQuery - Post array of multiple checkbox values to php

Why is only one value of the "db" checkbox values array being sent to the server side script? JQUERY: $(".db").live("change", function() { ...
25
votes
16answers
24k 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 ...

1 2 3 4 5 58