Tagged Questions
0
votes
1answer
51 views
Update bg colour of text input in html form via javascript
I have a form that I want to validate before the user is able to submit it. To do this I have written a basic js file that checks a value is not left blank. In the event that this is the case I want ...
0
votes
5answers
115 views
Processing array in php
I got this 2 array in a form to be process. However, i only manage to get the output from only one of the array. Sample as below :
<inputs id="location" type="text" name="data[]" value=""/>
...
1
vote
2answers
3k views
input field disabled until radio button is checked (HTML)
I have two fields one of them is a text input field and the other is a select tag.
The thing is I want one of them to be enabled only
and the user should choose one to enable by clicking on one of the ...
0
votes
1answer
261 views
Detect input value and modify value if not valid
I think this is a simple question, but yet, I cant find the solution.
I have a form that is being validated by jQuery Validator. I have an html input type that is url and use jQuery to validate that ...
0
votes
1answer
606 views
In Chrome, focusing an HTML text input field selects the contents. How to unselect? [duplicate]
Possible Duplicate:
Focus input field with JQuery without selecting current value text
Using the following code to focus the first field in the form:
$(document).ready(function(){
...
0
votes
1answer
151 views
Do I use Javascript for HTML <select> needs to affect two variables?
I'm currently working on a paypal checkout form. The form allows the user to specify a few options and when they submit the form, it submits the order to paypal for processing.
The form has a ...
1
vote
2answers
2k views
How to set the value of a text input with MooTools
I have just begun playing with MooTools, and I don't understand why the following happens:
var input = new Element('input');
input.set('type','text');
input.set('value','this is the value');
...
10
votes
10answers
26k views
How do I cancel form submission in submit button onclick event?
I'm working on an ASP.net web application.
I have a form with a submit button. The code for the submit button looks like <input type='submit' value='submit request' onclick='btnClick();'>.
I ...
18
votes
4answers
5k 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 ...

