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)

0
votes
3answers
18 views

How to align `<label>` behind transparent `<input>`

How do i align <label> centered behind transparent <input> then set opacity of input onfocus to 1
0
votes
1answer
10 views

Rails - Simple Form Validation

For my application, users can create posts through a simple_form on the user's own show page. I have validation in the post model that requires presence is true. When no input is made, instead of ...
0
votes
2answers
12 views

How to use JavaScript to Require a Ratio of Completed Fields in a Form

I'm looking for a way to use JavaScript to require a specific ratio of fields in a form to be complete. So if I have six fields and the user has to complete any 2/6 to submit. If not then they receive ...
0
votes
1answer
19 views

Form error handling ajax depending on user input

Couldn't find any valueable answers on this question: Its a pretty basic ajax form process handler: $(document).ready(function(){ }); function functionToUpdate(id) { var data = ...
0
votes
1answer
36 views

Knowing when machine is connected to Internet (Event)

I am creating a Win Forms Application(C#). I need to keep it running 24/7 and submit some XML data when connected to Internet. I am aware of few methods which keep pinging a solid domain to check if ...
0
votes
0answers
15 views

jQuery - Make users fill out form before video plays

I need to make it so that when a user clicks the embedded youtube video to play the video, a form appears where they have to submit valid info in order for the video to continue playing. Where could ...
0
votes
1answer
29 views

php cURL retrieve PDF from javascript form function

Could you have a look at this page: http://apps.humana.com/tad/tad_new/Search.aspx?sortfield=name&policyType=medical I am trying to figure out the approach I could take with cURL to download the ...
0
votes
0answers
30 views

Email Form Data

I have a large form that I want to collect data from and enter it into a MySQL database and email the results to myself. The code I have so far enters the data just fine. I also am uploading multiple ...
4
votes
2answers
75 views

I cannot seem to get my form to successfully email

This is my first time creating a website combining AJAX, JavaScript, PHP, and HTML. Basically, I have a modal that pops up when you click "contact me" with a form inside. The reason I've chosen to use ...
0
votes
1answer
26 views

Anyone know how to make an entire form disappear on a jsp page?

<H1 align="center">ID Lookup</H1> <FORM ACTION="index.jsp" METHOD="POST"> <H3 ALIGN="center">Please enter your User ID:</H3> <INPUT TYPE="TEXT" ...
1
vote
0answers
9 views

How to send an Zend Form with Dojo and XHR by pressing Enter

First, the things I use: I am using Dojo 1.6 and Zend Framework 1.11.5 - and no, I will not update now. Second, my situation: I have a Zend_Form with enabled Zend_Dojo support. I am creating the ...
0
votes
2answers
12 views

How do I pass the Value from a Dropdown Form through a Link in Rails?

I have a dropdown select on my page called language, which is in a form with other elements. When the form is submitted normally (which submits everything), I can access the value of the dropdown with ...
0
votes
2answers
15 views

Radio Buttons lose functionality inside a return false element

So I have a modal with a form. The form has two radio buttons: I have this, which stops the modal from closing if the user clicks inside it: $(".modal-content").click(function(e){ return ...
0
votes
2answers
19 views

Rails/Ajax/Error Processing

So there are tons of articles about how to do this, but certainly there's a best practice...and I don't know enough to filter out silly solutions, good ones, and best ones. I simply want to submit my ...
0
votes
2answers
47 views

Jquery Stop Submit if two fields empty

I am new to jquery and javascript but I wondered if anyone had any nice ideas about how I can show the user an error (alert) if they try to submit the form when both fields are empty. Here is the ...
0
votes
1answer
12 views

Editing multiple records in one form - Rails

I'm trying to edit multiple records using one form, so the user can edit a few records then press submit at the end rather than after each individual one. I've posted my current code, and I get this ...
0
votes
1answer
44 views

Reload php scandir() without refresh

I'm using this script: $userdir = '../../'.$id.'/'; $files2 = scandir($userdir); $ignore = array(".", ".."); foreach ($files2 as $value) { if(in_array($value, $ignore)){ ...
-1
votes
1answer
26 views

how to have a page refresh and adjust changes based off of form selection with PHP

I'm creating a character creation form for a roleplaying game. I am relatively new to programming and trying to figure out how to code with php to pull info from a dropdown menu and then refresh the ...
-1
votes
5answers
39 views

PHP: change page action of a form by url in select

hy, i have a problem with a form. i know the question is simple but i can not have a solution. Well, this is my form: <form id="search" method="post" action="cerca_redirect2.php" > <select ...
0
votes
0answers
5 views

Dynamically updated datalist won't show

I'm updating an html5 datalist dynamically, as the user types, with the following script: $('#place').on('keyup', function() { $.post('content/php/autocomp.php', { field: 'plaats', val: ...
0
votes
1answer
39 views

PHP included JavaScript is not working properly in Jquery Mobile

In my jquery mobile web app I include a Login-Form on every page the user is navigating to. I do that so that the user could login at every time he wants to, not just on the start page. Since I do ...
0
votes
0answers
23 views

Store HTML page data in SQL database using MVC

I have MVC project in that i have one HTML page that include input box for email ID i want to store that Email ID in my database i don't khow the way to do this, Any suggestion My HTML file code is ...
1
vote
2answers
21 views

Rails form fields empty after submitting form

This is my form: <%= form_tag("/adverts", :method => "get") do %> Order by: <%= select_tag :order_by, options_for_select([['Ascending', 'ASC'], ['Descending', 'DESC']])%> <%= ...
1
vote
0answers
21 views

CSS Selectbox position absolute Bug IE10 + W8

IE10 got an weard selectbox error. When selected it flips to the top of page and flickers on/off. This problem only appears with IE10 and the "new" selectbox. Is it posible to force and show the old ...
0
votes
0answers
24 views

Writting in a textbox with VBA crashes the program

I have a VBA program which draws a wheel and a bunch of other shapes.It rotates the wheel by 3 degrees after each 50 milliseconds and moves other shapes around. I also have a form which has a textbox ...
0
votes
0answers
28 views

PHP File Upload + ID from Form

i've put together a script and all seems well except for the actual upload of the file. Here is the php code that I have: <?php $allowedExts = array("gif", "jpeg", "jpg", "png"); $extension = ...
0
votes
1answer
26 views

How to set button's label without changing value in post

I've got this code in html: <form action="/login/" method="post"> <input type="text" name="login"> <input type="text" name="pass"> <input type="submit" value="login" name="type" ...
0
votes
5answers
40 views

PHP_SELF on submit form [closed]

I have a question about using PHP_SELF on a submit from a form. This is what I have in my index.php: <body> <div class="container"> <div class="row"> <div ...
1
vote
4answers
38 views

HTML5 color pick change span color

I'm making a form where you can preview the result. I've made this: HTML: <input type="color" id="color" /> <span id="colorchange">Foo</span> JS: $(document).ready(function() { ...
0
votes
0answers
32 views

How to disable required field validator from the phone nummer field?

I got this form script from a friend of mine. And the question is how can i disable the phone number required field validation? At this moment all fields are required to fill in. As you can see i'm ...
0
votes
0answers
10 views

Typo3 backend custom forms for a Plugin

The frontend plugin I created with extension builder is called "Events". There are 3 other tables which are also a part of the plugin- Category , Location and Media, apart from Event. The problem is ...
0
votes
1answer
12 views

colspan like feature for spring form textarea

How can I get colspan like feature in a form:textarea in spring form tag? This is my current code: <td><html:textarea rows="5" cols="60" path="comment" /></td> There are total 5 ...
0
votes
1answer
45 views

AJAX, PHP, and Javascript to populate a form input device issues

Im way out of my knowledge on this one, so i thought i could need some help... Background: I have a form which needs to have dynamic drop down lists, based on a postcode(text box) this was done by ...
0
votes
1answer
17 views

Get validation errors on a partial's form

So I have a form in my Rails app that's on a _form.html.erb. I'm displaying this partial on every page of my site, so it doesn't really have any model logic behind it, and the User created form it is ...
0
votes
0answers
16 views

Anchor Link on Form Submission

I have a Web form using the Tectite FormMail script. I'm trying to get the form to work where upon submit it displays a area using anchor text. The rest of my Web page works perfectly when using to ...
0
votes
2answers
17 views

Rails form_for and text_field without model attribute

I'm writing a form for users to register their products with. I already have class User has_many :products and class Product belongs_to :user; attr_accessible :serial_number. So the idea is that the ...
0
votes
1answer
23 views

Parsing html forms [closed]

I have a website that has a form with three pull-down menus. After I select something in the first pull-down menu, the form refreshes and gives me values for select in the second pull-down menu. After ...
0
votes
2answers
31 views

Background color change from form field

I need to create a form with the ability to let the user input a hex value, then upon click it applies that color. I have it working in firefox unless there is a background image already chosen, and ...
1
vote
2answers
43 views

Perl mechanize print HTML form names

I'm trying to automate hotmail login. How can I find what the appropriate fields are? When I print the forms I just get a bunch of hex information. what's the correct method and how is it used? use ...
0
votes
1answer
18 views

Zurb Foundation checkbox looking funny when publishing live

I have a simple Foundation checkbox according to these docs. Looks great locally: However, when I publish to Heroku, my checkboxes all look like this, no code was changed: Any ideas? Here's my ...
0
votes
1answer
42 views

How can I verify my form while redirecting to a separate page?

So I'm creating a form that uses the values entered to create a PDF. Now, the php that I'm using to do this is already completed from another person. Currently everything works great, except once you ...
0
votes
3answers
74 views

Need to convert a $_FILES to $_POST in php

I have to input fields like <input id="input_A" type="file" multiple="" onchange="doitgood();" /> <input id="input_B" type="text" /> and function doitgood(){ ...
0
votes
2answers
53 views

Javascript calculations working in IE only

I am trying to create a form so that user can enter certain information and JavaScript will do the calculations for them. I've been trying to use http://demo.rsjoomla.com/calculation-form-example (the ...
0
votes
1answer
18 views

How to keep checkboxes checked in PHP email form

I have a long web form that emails to an address once it is submitted. If there are errors with the form it alerts the user but leaves the values already entered on the form. The only thing I can't ...
0
votes
2answers
29 views

Rails SimpleForm arithmetic calculation on create

For my first Rails project, I'm trying to create a form with the SimpleForm gem. The form has questions in radio button format and each answer has a score associated with it (1 - 4). My aim is to have ...
0
votes
2answers
46 views

how to redirect from a form to different page?

I would like to add a form in my page. When I click on the submit button it post some details. <form action="http://toggletime.net/redirect.php" method="get"> <input type="text" name="url" ...
0
votes
3answers
35 views

how to use ng switch to better validate

http://jsfiddle.net/x3azn/AbmsG/1/ I only want to show error Msgs one at a time, I am thinking of doing it with ng switch which is more code efficient than ng:show, however the algorithm I have right ...
1
vote
1answer
46 views

tile edit view wrong context for vocabularies

I have a persistent tile that has a choice field: subjects = schema.List( title=_(u"Subjects"), value_type=schema.Choice( vocabulary='my.subjects' ), ) but this is failing on ...
-2
votes
2answers
47 views

I need to update a record in PHP containg HTML

I am working on a PHP form to update a database record. I don't have a problem with most of the records, but there is one that I need to put html into. If I only enter regular text or single quotes it ...
0
votes
2answers
19 views

ajax form after 'submit' validation errors

I have created a form using ajax and php. The initial load and entering values into the form are all working fine, but where I am getting errors, is after the submit button has been pressed. Here is ...

1 2 3 4 5 608