Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
7answers
78k views

how to set radiobutton in jquery

I have radio buttons like this <td> <input id="radio1" type="radio" name="correctAnswer" value="1">1</input> <input id="radio2" type="radio" name="correctAnswer" ...
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 ...
22
votes
5answers
12k views

Best way to track onchange as-you-type in input type=“text”?

In my experience, input type="text" onchange event usually occurs only after you leave (blur) the control. Is there a way to force browser to trigger onchange every time textfield content changes? If ...
18
votes
4answers
596 views

Can you have multiline HTML5 placeholder text in a <textarea>?

I have ghost text in textfields that disappear when you focus on them using HTML5's placeholder attribute: <input type="text" name="email" placeholder="Enter email"/> I want to use that same ...
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 ...
14
votes
8answers
2k views

Is there a centralized list of country names that can be used for web drop down boxes (and validation)

There are examples online with web select boxes that have a huge list of countries and that probably will be good enough for me to use. However, by Murphy's law, there's bound to be some random ...
12
votes
2answers
4k views

How to disable the resize grabber of an HTML <textarea>?

I wanna know that how to disable the grabber in the textarea! I mean that triangle thing which appears in the right-bottom corner of the textarea. Please help me out! Thanks in advance!
12
votes
4answers
10k views

HTML form with multiple hidden control elements of the same name

Is it legal to have an HTML form with more than one "hidden" control element with the same name? I expect to get the values of all of these elements at the server. If it is legal, do the major ...
10
votes
1answer
4k views

ASP.NET MVC: Best way to get form checkboxes into many-to-many DB assoc table with LINQ To SQL?

I have an ASP.NET MVC view which contains checkboxes for user-defined categories. <td><% foreach (Category c in (List<Category>)ViewData["cats"]) { if ...
9
votes
10answers
2k views

How to prevent robots from automatically filling up a form?

I'm trying to come up with a good enough anti-spamming mechanism to prevent automatically generated input. I've read that techniques like captcha, 1+1=? stuff work well, but they also present an extra ...
7
votes
5answers
568 views

jQuery Modal Confirmation Dialog Not Submitting Form

I am trying to pop up a confirmation modal when the user presses the delete button on the edit form. The modal pops up fine, but when jQuery should be submitting the form, it's not doing anything. I ...
6
votes
4answers
777 views

What characters are allowed in the HTML Name attribute?

I have a PHP script that will generate <input>s dynamically, so I was wondering if I needed to filter any characters in the name attribute. I know that the name has to start with a letter, but ...
5
votes
3answers
194 views

How to format the content of an email send with a form?

I have a complex HTML form which I want to send via email. Is there a way to send and format the content of this email as HTML via javascript without using a server-side script? Edit: Lets assume ...
5
votes
5answers
3k views

Prevent double submission of forms in jQuery

I have an form that takes a little while for the server to process. I need to ensure that the user waits and does not attempt to resubmit the form by clicking the button again. I tried using the ...
5
votes
7answers
5k views

Using embedded standard HTML forms with ASP.NET

I have a standard aspx page with which I need to add another standard HTML form into and have it submit to another location (external site), however whenever I press the submit button the page seems ...
5
votes
12answers
3k views

What is the best designed form you have ever seen?

I am looking for awesome forms that are easy and intuitive to use even though they may be overly complex. Multi-page is cool too. Screen shots of the forms would be way cool.
4
votes
3answers
68 views

What does it mean when the form action attribute is “#” (number/pound symbol/sign/character)?

What does it mean when the form action attribute is "#" (number/pound symbol/sign/character)? What happens when a form input's formaction attribute is set to "#"? Does this prevent the input from ...
4
votes
3answers
405 views

HTML Form Data Lost On POST

We have a very strange problem which we have yet to be able to diagnose. Our application has a number of specific ASP.NET MVC actions which fail because a required parameter is missing: The ...
4
votes
2answers
480 views

jQuery form deserialization for all inputs

I've been using a simple each function for deserializing a form: data = { key : val, ... }; form = $('#formId'); $.each(data, function(val,i) { form.find('*[name="' + val + ...
4
votes
2answers
2k views

Make page to tell browser not to cache/preserve input values

Most browser cache form input values. So when user refreshes page, the inputs have same values. Here's my problem. When user clicks Save, server validates POSTed data (e.g. checked products), and if ...
4
votes
5answers
3k views

Disable autocomplete via CSS

Is it possible to use CSS to disable autocomplete on a form element (specifically a textfield)? I use a tag library which does not permit the autocomplete element and I would like to disable ...
3
votes
1answer
176 views

Javascript Matrix Calculator with HTML form

I have a website that teaches students finite math http://finitehelp.com. On the site I have a calculator that does combinations and permutations and now I am trying to include a matrix calculator ...
3
votes
4answers
116 views

How can I stop isNaN from returning an error for a blank field?

EDIT: Ok so I'm updating this question, to show what I've built as I've still not been able to fix this issue. Here is an image of what I've got. So as you can see, When the user enters a value, ...
3
votes
3answers
96 views

In an html form how can you have a color picker and how is it sent to a database

I'm creating an html form in dreamweaver and it requires the user to pick a color. Now I went on to there little widget browser thing and added the color picker jquery widget they had. My question, ...
3
votes
2answers
422 views

RoR: POST to a page using raw form data. How?

Is there a ruby method to POST form data encoded in "x-www-form-urlencoded" as specified here? http://www.w3.org/MarkUp/html-spec/html-spec_8.html I am aware of Net::HTTP.post_form, but because I ...
3
votes
2answers
397 views

Rails select_date form name

As much as I love rails, I've always hated dealing with dates in an html form...especially when the date isn't an object's property. The select_date helper is nice, but it always generates this: ...
3
votes
3answers
3k views

How to ajax-submit a form textarea input from CKEditor?

I am using CKEditor, jQuery and jQuery form plugin and I would like to submit contents of the CkEditor form via an Ajax query. Here is my code: <form id="article-form" name="article-form" ...
3
votes
1answer
1k views

How best to convert CakePHP date picker form data to a PHP DateTime object?

I'm doing this in app/views/mymodel/add.ctp: <?php echo $form->input('Mymodel.mydatefield'); ?> And then, in app/controllers/mymodel_controller.php: function add() { # ... (if we have ...
3
votes
3answers
1k views

howto hide outline on a form

I have to design a form with an input inside it. I use background image on the input so it would look like a button. Every time somebody clicks it, it would send $POST, a behavior I want to achieve. ...
3
votes
2answers
1k views

How can I customise Zend_Form regex error messages?

I have the following code: $postcode = $form->createElement('text', 'postcode'); $postcode->setLabel('Post code:'); $postcode->addValidator('regex', false, ...
3
votes
4answers
9k views

calling javascript from a html form

I am basing my question and example on Jason's answer in this question I am trying to avoid using an eventListner, and just to call handleClick onsubmit, when the submit button is clicked. ...
3
votes
5answers
972 views

How I do to force the browser to not store the html form field data?

When typing in html forms, browsers like firefox or ie store the values, sometimes quietly. So when typing in another webforms, the browser smartly suggest the same information. Another method to show ...
3
votes
8answers
2k views

How can web form content be preserved for the back button

When a web form is submitted and takes the user to another page, it is quite often the case that the user will click the Back button in order to submit the form again (the form is an advanced search ...
3
votes
2answers
8k views

How do I use jQuery to insert a <DIV> wrapped around a variable number of child elements?

I have ASP.Net code similar to the following (this is inside a FIELDSET): <ol> <li> <label>Some label</label> <one or more form controls, ASP.Net ...
2
votes
4answers
42 views

Sending multiple parameters to javascript from a HTML form button

Ok so i have a form that has three input boxes, at the moment they're text, but they will be changed to password. When the submit button is pressed i want the for to send the form data to an Ajax ...
2
votes
2answers
49 views

Javascript: onSubmit function submits form before function has finished?

I'm asking this because I am at a complete loss myself and need a fresh pair of eyes. The following JavaScript function is successfully called on submission of the connected HTML form. The function ...
2
votes
2answers
46 views

Prevent elements from clearing after failed validation on nested .NET master page

The validation works perfectly, but if the validation fails, the form clears all data. How can I validate the form without causing the user to have to re-enter all the data again? Due to the nature of ...
2
votes
1answer
53 views

How to mimic an HTML form submission in a POST request?

I have HTML form that is used for sending bugreports from application to server. I need to mimic this behavior programmatically. What will the corresponding POST request (or series of requests) look ...
2
votes
2answers
53 views

HTML Tables vs Lists for form inputs

Everyone knows that you should be only using tables for semantic purposes, to markup tabular data. I personally use ordered lists to markup form inputs. However I have seen arguments pro using ...
2
votes
1answer
26 views

Use composition in Rails

I don't know which is the best or right way to make something, so I'm looking for suggestions. Stage: I am using Rails 3 to make some web app. Imaging two models: Canvas and Zone. A canvas object ...
2
votes
1answer
52 views

URL Encode problem with chine language

I have such text in chines: "回家" - seems it is "house" in english. I go to google.com, post "回家" in search and get such url: http://www.google.ru/ ... q=%E5%9B%9E%E5%AE%B6 => q = %E5%9B%9E%E5%AE%B6 ...
2
votes
1answer
98 views

How to Build an HTML POST?

Unlike GET, in which building the query is straightforward (concatenating fields into one long URL), I seem to be missing the "secret" of generating a POST. I know that the URL provided in the ...
2
votes
3answers
75 views

How to make enter the submit button in a form

I have a form for logging into my website. I need to make it so that when the user hits enter, the form submits. How can I do this? Please provide code. Thanks. <form id="login" ...
2
votes
3answers
437 views

Database Design For Developing 'Quiz' Web Application using PHP and MySQL

So, I'm trying to learn PHP and MySQL (I have a basic understanding of both; I've read the first half of both Head First SQL and Head First PHP & MySQL) and I figure the best way to solidify my ...
2
votes
2answers
181 views

Firefox and Chrome replacing LF with CR+LF during POST

Why does Firefox and Chrome replace the LF character with CR+LF during POST? I wrote the following as a test: <html> <head> <script ...
2
votes
1answer
356 views

HTML Form: Select-Option vs Datalist-Option

I was wondering what the differences are between Select-Option and Datalist-Option. Is there any situation in which it would be better to use one or the other? An example of each follows: ...
2
votes
3answers
152 views

Generic solution to submit expected HTML Form when [Enter] key used and multiple Forms are present?

Based on this Stackoverflow question there seems to be no defined standard behaviour, or shared implementation across browsers, for hitting the [Enter] key in an HTML form field when multiple forms ...
2
votes
5answers
224 views

Can I put associative arrays in form inputs to be processed in PHP?

I know I can do things like <input name="foo[]">, but is it possible to do things like <input name="foo[bar]"> and have it show up in PHP as $_POST['foo']['bar']? The reason I ask is ...
2
votes
3answers
427 views

Adjusting line-height of label elements in HTML forms

I have a form with a wrapping <label> element, but the space between the <label>'s two lines is too big and I can't seem to adjust the line-height of the <label>. Here is an ...
2
votes
5answers
152 views

How to access the URL of a GET AJAX request?

I had a look at some other questions but I'm still not sure how to achieve this. The situation is I had a complex form that worked fine statically but I 'made it better' by making it submit using an ...

1 2 3 4 5 6