Tagged Questions

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.

learn more… | top users | synonyms (1)

92
votes
42answers
4k views

Should We Mask Passwords?

From Jacob Nielson's "Stop Password Masking": Usability suffers when users type in passwords and the only feedback they get is a row of bullets. Typically, masking passwords doesn't even ...
60
votes
2answers
30k 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?
47
votes
3answers
23k 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 ...
34
votes
4answers
18k 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 between <input type='button' /> and <input type='submit' />?
31
votes
5answers
4k 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 ...
29
votes
4answers
5k 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 ...
27
votes
9answers
24k views

Whats a Good Javascript Time Picker?

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 ...
23
votes
8answers
31k 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?
21
votes
7answers
25k 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?
20
votes
6answers
4k 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 ...
19
votes
4answers
18k views

How to remove border around text/input boxes? (Chrome)

Can anyone explain how to remove the orange border 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 { ...
19
votes
14answers
31k 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 ...
18
votes
5answers
3k 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 ...
17
votes
2answers
298 views

Semantics of flags on basic_ios

I find myself repeatedly baffled by the rdstate() flags - good(), bad(), eof(), fail() - and how they are expressed in basic_ios::operator!, operator bool and operator void*. Could somebody put me ...
17
votes
5answers
19k 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 ...
16
votes
9answers
8k 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 ...
16
votes
8answers
24k 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 ...
15
votes
15answers
783 views

What is the correct way to detect whether string inputs contain HTML or not?

When reciving user input on forms I want to detect whether fields like "username" or "address" does not contain markup that has a special meaning in XML (RSS feeds) or (X)HTML (when displayed). So ...
15
votes
7answers
23k 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 ...
15
votes
4answers
11k 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 ...
14
votes
7answers
12k 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" ...
14
votes
6answers
21k 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?
14
votes
4answers
14k 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 ...
13
votes
1answer
86 views

Is it possible to prefill a input() in Python 3's Command Line Interface?

I'm using Python 3.2 on Ubuntu 11.10 (Linux). A piece of my new code looks like this: text = input("TEXT=") Is it possible to get some predefined string after the prompt, so I can adjust it if ...
13
votes
4answers
719 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' ...
13
votes
2answers
3k 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: // ...
13
votes
4answers
13k 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 ...
13
votes
4answers
3k views

How do I read UTF-8 with diamond operator (<>)?

I want to read UTF-8 input in Perl, no matter if it comes from the standard input or from a file, using the diamond operator: while(<>){...}. So my script should be callable in these two ways, ...
12
votes
3answers
4k views

How to reset default button style in Firefox 4 +

In firefox 3.6 you could use ::-moz-focus-inner {border:0;padding:0;margin:0;} to remove those default margins and paddings forms.css added. How can I reset this in Firefox 4? I've been searching for ...
12
votes
5answers
5k 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 ...
12
votes
6answers
8k views

How can I prevent Firefox's Autocomplete?

There's several section of our site where the user needs to enter some information, and Firefox's auto fill takes over when the page loads - mostly incorrectly! For example, there's a "Fax Number" ...
11
votes
4answers
437 views

Input bar at console bottom in C

Window bottom Some applications like vim, mutt, aptitude contain a top window section for output and a bottom section for the user to type in or for status display. (Suppose there is one child ...
11
votes
2answers
963 views

What does WPF use to capture mouse and keyboard input?

I globally (system-wide) filter certain mouse clicks using SetWindowsHookEx and WH_MOUSE_LL. The problem is it doesn't work for WPF applications (all WPF applications detect mouse clicks whether or ...
11
votes
5answers
5k 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 ...
10
votes
3answers
957 views

Why isn't textarea an input[type=“textarea”]?

Why there's an element <textarea> instead of <input type="textarea">?
10
votes
2answers
2k views

Python nonblocking console input

I am (trying) to make a simple IRC client in python (as kind of a project while I learn the language). I have a loop that I use to receive and parse what the IRC server sends me, but if I use ...
10
votes
9answers
8k 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 ...
10
votes
4answers
2k views

how to read numbers from an ascii file (C++)

i need to read in data files which look like this: * SZA: 10.00 2.648 2.648 2.648 2.648 2.648 2.648 2.648 2.649 2.650 2.650 2.652 2.653 2.652 2.653 2.654 2.654 2.654 2.654 2.654 ...
10
votes
11answers
22k views

C#: How do I read a specified line in a text file?

Given a text file, how would I go about reading an arbitrary line and nothing else in the file? Say, I have a file test.txt. How would I go about reading line number 15 in the file? All I've seen ...
10
votes
5answers
8k views

How can I apply a background image to a text input without losing the default border in Firefox and WebKit browsers?

For some reason most modern browsers will stop applying their default input border style to text boxes if you give them a background image. Instead you get that ugly inset style. From what I can tell ...
10
votes
8answers
13k views

C non-blocking keyboard input

I'm trying to write a program in C (on linux) that loops until the user presses a key, but shouldn't require a keypress to continue each loop. Is there a simple way to do this? I figure I could ...
10
votes
5answers
4k views

What is the best way to replace the file browse button in html?

I know that it's possible to replace the browse button, which is generated in html, when you use input tag with type="file". I'm not sure what is the best way, so if someone has experience with this ...
9
votes
6answers
499 views

DOM input events vs. setTimeout/setInterval order

I have a block of JavaScript code running on my page; let's call it func1. It takes several milliseconds to run. While that code is running, the user may click, move the mouse, enter some keyboard ...
9
votes
2answers
906 views

Cross-browser JavaScript input live change/paste detection

Is there a cross-browser way to detect live changes to an input field? By live, I mean not when the field loses focus, and not on the next keypress, and so on. Immediately or something like it. ...
9
votes
7answers
868 views

Read large amount of data from file in Java

I've got text file that contains 1 000 002 numbers in following formation: 123 456 1 2 3 4 5 6 .... 999999 100000 Now I need to read that data and allocate it to int variables (the very first two ...
9
votes
5answers
25k 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 ...
9
votes
6answers
2k views

Disadvantages of scanf

I want to know what disadvantage of scanf() exist. In many of a sites I have read that using scanf will cause buffer overflow some times. What is the reason for that, and is there any other ...
9
votes
5answers
1k views

Is there an iPhone equivalent to the NSTokenField control?

In my app I want the user to type names into a UITextField (or equivalent) and then when they press return, it will put that word(s) in a blue bubble that's usually associated with tags. The cursor ...
9
votes
4answers
24k 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 ...
9
votes
5answers
15k 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 ...

1 2 3 4 5 64