Input is usually related to the user input, i.e. to the data that user effectively supply to the running application. In many systems this input is considered to be potentially dangerous and needs to be sanitized.
368
votes
9answers
240k views
Best way to remove an event handler in jQuery?
I have an input type="image". This acts like the cell notes in Microsoft Excel. If someone enters a number into the text box that this input-image is paired with, I setup an event handler for the ...
281
votes
5answers
170k views
How to disable an input with jQuery?
$input.disabled = true;
or
$input.disabled = "disabled";
Which is the standard way?
And,reversely,how to enable an input?
135
votes
3answers
70k views
How do I disable the highlight border on an html input text element
<input type="text" name="user" class="middle" id="user" tabindex="1" />
Basic text input in html, when you tab or focus into it, Safari will put a blurry blue border around it. For the layout ...
109
votes
7answers
104k views
How to remove border (outline) around text/input boxes? (Chrome)
Can anyone explain how to remove the orange border (outline) around text/input boxes? I think it only happens on Chrome to show that the input box is active. Here's the input CSS i'm using:
input {
...
93
votes
7answers
23k views
Can I hide the HTML5 number input’s spin box?
Is there a consistent way across browsers to hide the new spin boxes that some browsers (such as Chrome) render for HTML input of type number? I am looking for a CSS or JavaScript method to prevent ...
79
votes
5answers
24k 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 ...
71
votes
7answers
18k views
html input - name vs. id
When using the HTML <input> tag, what is the difference between the use of the name and id attributes especially that I found that they are sometimes named the same?
Thanks.
70
votes
3answers
49k views
Difference between <input type='button' /> and <input type='submit' />
There is no such thing as a stupid question, so here we go: What is the difference between <input type='button' /> and <input type='submit' />?
68
votes
9answers
109k views
Python and User input
How do I have a Python script that can accept user input (assuming this is possible) and how do I make it read in arguments if run from the command line?
55
votes
7answers
19k views
Chrome auto formats input=number
I have a web application where I'm specifying an input field to be a number using the HTML5 property type="number".
<input type="number" value="123456" />
By specifying the type, Chrome ...
52
votes
11answers
51k views
Whats a Good Javascript Time Picker? [closed]
What's a good time picker for jquery or standalone js? I would like something like google uses in their calendar where it has a drop down of common times in 15min intervals or lets you manually type ...
51
votes
5answers
28k views
Is there any way to change input type=“date” format?
I'm working with HTML5 elements on my webpage. By default input type="date" shows date as YYYY-MM-DD.
Is it possible to change it's format to something like: DD-MM-YYYY?
50
votes
8answers
49k views
Determine the number of lines within a text file
Is there an easy way to programmatically determine the number of lines within a text file?
47
votes
5answers
24k views
jquery input select all on focus
Hey all. I'm using this code to try and select all of the text in the field when a user focuses on the field. What happens is, it selects all for a second, then its unselected and the typing cursor is ...
46
votes
9answers
60k views
How do I get a TextBox to only accept numeric input in WPF?
I'm looking to accept digits and the decimal point, but no sign.
I've looked at samples using the NumericUpDown control for WinForms, and this sample of a NumericUpDown custom control from ...
45
votes
4answers
8k views
Do I need to manually close a ifstream?
Do I need to manually call close() when I use a std::ifstream?
For example in the code:
std::string readContentsOfFile(std::string fileName) {
std::ifstream file(fileName.c_str());
if ...
44
votes
6answers
18k views
jQuery selector for inputs with square brackets in the name attribute
I want to do this:
$('input[inputName=someValue]')
Except that the name of the input is not inputName, it is inputName[]. And this doesn't work:
$('input[inputName[]=someValue]')
and neither ...
42
votes
6answers
60k views
Set cursor position in html textbox
Does anybody know how to move the cursor in a textbox to a particular position?
For example if a textbox (e.g. input element, not textarea) has 50 characters in it and I want to position the cursor ...
41
votes
6answers
18k views
Why does the jquery change event not trigger when I set the value of a select using val()?
<select id="single">
<option>Single</option>
<option>Single2</option>
</select>
<script>
$(function() {
$(":input#single").change(function(){
...
41
votes
4answers
29k views
Python read a single character from the user
Is there a way of reading one single character from the user input? For instance, they press one key at the terminal and it is returned. Sort of like getch(). I know that there is a function in ...
39
votes
3answers
59k views
How do I make a text input non editable
So i have a text input
<input type="text" value="3" class="field left">
Here is my css for it
background:url("images/number-bg.png") no-repeat scroll 0 0 transparent;
border:0 none;
...
39
votes
5answers
65k views
Android Reading from an Input stream efficiently
I am making an HTTP get request to a website for an android application I am making.
I am using a DefaultHttpClient and using HttpGet to issue the request. I get the entity response and from this ...
39
votes
5answers
39k views
Unicode characters in Windows command line - how?
We have a project in TFS that has a non-English character (š) in it. When trying to script a few build-related things we've stumbled upon a problem - we can't pass the š letter to the command line ...
38
votes
3answers
24k views
Why isn't textarea an input[type=“textarea”]?
Why is there an element <textarea> instead of <input type="textarea">?
36
votes
6answers
44k views
CSS/HTML: Create a glowing border around an Input Field
I want to create some decent inputs for my form, and I would really like to know how TWITTER does their glowing border around their inputs.
Example/Picture of the Twitter border:
I also don't ...
35
votes
9answers
43k views
JavaScript: Check if mouse button down?
Is there a way to detect if a mouse button is currently down in JavaScript?
I know about the "mousedown" event, but that's not what I need. Some time AFTER the mouse button is pressed, I want to be ...
33
votes
6answers
99k views
How to implement onchange of <input type=“text”> with jQuery?
<select> has this api, what about <input>?
32
votes
11answers
37k views
HTML input textbox with a width of 100% overflows table cells
Does anyone know why the input elements with a width of 100% go over the table's cells border.
In the simple example below input box go over the table's cells border, the result is horrible. This was ...
32
votes
14answers
23k views
Override browser form-filling and input highlighting with HTML/CSS
I have 2 basic forms -- sign in and sign up, both on the same page. Now, I have no problem with the sign in form auto-filling, but the sign up form auto fills as well, and I don't like it.
Also, the ...
32
votes
8answers
18k views
Padding within inputs breaks width 100%
Ok, so we know that setting padding to an object causes its width to change even if it is set explicitly. While one can argue the logic behind this, it causes some problems with some elements.
For ...
31
votes
4answers
24k views
How do I use jQuery's form.serialize but exclude empty fields
I have a search form with a number of text inputs & drop downs that submits via a GET. I'd like to have a cleaner search url by removing the empty fields from the querystring when a search is ...
31
votes
7answers
43k views
jQuery - auto size text input (not textarea!)
How do I auto-resize the input type="text" field with jQuery? I want it to be like 100px wide at the start, then make it auto-widening as user inputs text... is that possible?
30
votes
7answers
59k views
Delete default value of an input text on click
I have an input text :
<input name="Email" type="text" id="Email" value="email@abc.com" />
I want to put a default value like "What's your programming question ? be specific." in ...
29
votes
16answers
54k views
CSS to hide INPUT BUTTON value text
I am currently styling an <input type='button'/> element with the following CSS:
background: transparent url(someimage);
color: transparent;
I want the button to show as an image, but I don't ...
28
votes
9answers
29k views
HTML5 Input Type Date — Default Value to Today?
The new HTML5 input types are great. Opera's new built-in date picker is a breeze, and Chrome has at least supported the new input type with a spin-wheel implementation.
But is there any way to set ...
27
votes
4answers
11k views
nodejs how to read keystrokes from stdin
Is it possible to listen for incoming keystrokes in a running nodejs script?
If I use process.openStdin() and listen to its 'data' event then the input is buffered until the next newline, like so:
// ...
27
votes
6answers
28k views
System.InvalidOperationException: Unable to generate a temporary class (result=1)
I have developed an application using .net 3.5 and have deployed it as an .exe on a number of machines with the same environment.
However, on one particular machine I get the following error. Stack ...
26
votes
8answers
23k views
Disable Auto Zoom in Input “Text” tag - Safari on iPhone
I made an html page that has an tag with type equals "text". When I click in it using Safari on iPhone, all the page becomes larger (auto zoom). Does anybody know how to disable it?
26
votes
7answers
35k views
How to get the form parent of an input?
i need to get a reference to the FORM parent of an INPUT when I only have a reference to that INPUT. Is this possible with javascript (or else jQuery) ?
function doSomething(element) {
//element ...
26
votes
8answers
28k views
Change cursor type on input type=“file”
Simple question... How do I change the cursor type on a file input type?
I've tried the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
24
votes
3answers
22k views
CSS to align label and input
HTML Code Snippet:
<fieldset id="o-bs-sum-buginfo">
<label for="o-bs-sum-bug-ErrorPrefix">Error Prefix</label>
<input type="text" id="o-bs-sum-bug-ErrorPrefix" ...
23
votes
3answers
34k views
23
votes
5answers
57k views
How to read a single char from the console in Java (as the user types it)?
Is there an easy way to read a single char from the console as the user is typing it in Java? Is it possible? I've tried with these methods but they both wait for the user to press enter key:
char ...
22
votes
2answers
17k views
Google Chrome > Textboxes > Yellow border when active..?
Ive been modifying a form today, and testing it in Chrome. I noticed that on selecting a textbox, with border: 0 or none, it still puts a yellow border around it. Does anyone know of a way to get rid ...
22
votes
5answers
522 views
How are input keys exploitable by malicious users?
In the CodeIgniter PHP framework, there is a function that automatically runs on each request that, among other things, filters the GET/POST/COOKIE array keys, and kills the application if it ...
22
votes
2answers
9k views
is there a max size to the length of a hidden input in html?
in other words:
<input type="hidden" value="Can I put as much as I want in here, or is there a limit?" />
and if so, what is it?
22
votes
8answers
7k views
iOS5 show numeric keypad by default without using type=“number” or type=“tel”
With the release of iOS5, Apple has added their own validation to input type="number" form fields. This is causing some issues; see this question below which sums it up:
Input type='number' ...
21
votes
7answers
4k views
In bash, how does one clear the current input?
Suppose in bash you start writing a command like:
$ rm -rf /foo/bar/really/long/path/here
and then realize you don't want to execute this after all. Is there a way to clear the input with one or ...
21
votes
7answers
49k views
How to get input type using jquery?
I have a page where the input type always varies, and I need to get the values depending on the input type. So if the type is a radio, I need to get which is checked, and if it is a checkbox I need to ...
21
votes
6answers
30k views
Handling input with the Zend Framework (Post,get,etc)
im re-factoring php on zend code and all the code is full of $_GET["this"] and $_POST["that"]. I have always used the more phpish $this->_request->getPost('this') and ...