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)

-2
votes
7answers
106 views

What's the difference between input and :input [duplicate]

I've seen two ways of select input: $("input") and $(":input") Is there any difference between them?
1
vote
1answer
103 views

Twitter bootstrap overflow input append with icon

I want to create a really nice contact form with icons and full width input fields (span12). I use these frameworks: Twitter bootstrap Font Awesome 3.0 jQeury But the input fields extend/overflow ...
2
votes
1answer
43 views

How to get an array the correct way in Joomla (2.5/3.x)

<form> <input type="checkbox" name="item[]" value="1" /> <input type="checkbox" name="item[]" value="2" /> <input type="checkbox" name="item[]" value="3" /> </form> ...
0
votes
0answers
35 views

input type text value not visible in safari ipad

I have an input type text in an iframe. When I try to add value through document.getElementById('someid').value , it does not show the value in the text box. Strangely if I query it using either ...
-6
votes
2answers
42 views

I can't write a python average function that will average 3 input integers from user. (average has to be in float) [closed]

Can't write a functional python code that asks users to enter three integers, pass through a function named (avg) and will return the average as a (float) value.
0
votes
1answer
38 views

XNA C# File I/O using a .txt

sorry in advance if this seems trivial. Read a few tutorials/notes and still cannot get my head around this... I am currently making a puzzle game in which the player controls a character. Each time ...
0
votes
2answers
130 views

DatePicker With Today and DateFormat

I have been trying to create a jQuery UI function for the datepicker, and after reading all the forums and snippets out there, I realize that a vast majority of answers have been deprecated and/or ...
0
votes
1answer
64 views

How do I load variables from a file back into Scala?

I have variables in scala that have their values written to an external file in this format: 1 2 0 0.5 0.62 This is my code that puts them in the file called "myVars.txt": val pw = new ...
1
vote
2answers
102 views

How to style <input type='range' /> in IE10

I want to style the <input type='range' /> element in IE10. By default, IE 10 style the element like this: I want to customize it a bit, say, changing the color blue to red, grey to black, ...
-2
votes
0answers
20 views

Input box content directs to url in iframe [closed]

Okay, so I have a web page and an input box on that page I need a script so when a user enters something into the box it will direct an iframe on the same page to that location Example Inputbox = ...
2
votes
3answers
69 views

Two versions of my input function, recursion vs while-loop?

I need to have a function which returns a guaranteed input of type float. To implement this I came up with a recursive way, but only seconds later I realized I could use a while-loop just as well. ...
0
votes
1answer
58 views

GetState.IsKeyDown() never returns true (Microsoft.Xna.Framework.Input.Keyboard)

I am trying to check if a key is pressed on the keyboard with Xna.Framwork.Input, but the method i use doesn't see to work. My code (only important parts): using System.Threading; using ...
0
votes
2answers
22 views

jquery onclick setting variable

I set a variable 'api_key' on document load. I want to modify this variable with the text of an input field after clicking a button var api_key = ""; //my button has an id named "btn-verify", the ...
0
votes
2answers
39 views

How do I Add border to text in inputfield

I'm trying to find out how I can customize the text in a input field with css. What I want to do is to add a border to the text written in the input field. I can customize the font-family, font-size ...
0
votes
5answers
73 views

How to not clear input fields in php form?

I have a webpage that uses php and has a bunch of input fields in which a user enters some data and I turn the input into an SQL statement to query some database. I successfully parse the input fields ...
0
votes
0answers
11 views

input.name must be defined manually instead of using (input.name.match(/^Set\d+$/))

I'm using JavaScript to calculate values from type="radio". Each set of radio buttons is defined by "Set1" = first row "Set2" = second row The JavaScript uses the following to define the rows. var ...
0
votes
1answer
61 views

CakePHP 1.3 - Getting nested data from Form->input()?

I'm upgrading a system from CakePHP 1.1 to CakePHP 1.3. In 1.1 I was able to use the HTML helper to do something like: $html->input('User/email'); To get back data nested in: ...
0
votes
1answer
27 views

When to process Markdown?

I have a flavored version of Markdown implemented in my social web application. Everything works, but my question is: when should you convert the user input (Markdown) into HTML? Before storing it in ...
0
votes
1answer
18 views

browse file path spring webflow

I am currently working on a spring webflow application. In this project there are certain entities that point to a document that contains more information about that entity. However sometimes this ...
1
vote
3answers
60 views

change h:inputText attribute with javascript jsf2

I have this input : <p:column headerText="Quantité"> <h:inputText styleClass="maqte" id="qte" onkeyup="validerInput($(this),$(this).parent().prev().find('.monpu'));" ...
0
votes
3answers
56 views

Css attribute selector for inputs not working in IE8

I have the following css code working in Firefox/Chrome but not in IE8 input[type='text'] { float: right; width: 170px; } If I remove the attribute selector, it works in IE but it applies ...
0
votes
1answer
41 views

How to change input language in adobe air'

I want change the default operation system language from inside adobe air programmatic, keep getting English, event if current lang is something else and air application is loaded. Thanks///
0
votes
0answers
24 views

Inputs and links in a layered div not clickable for IE < 10

I have a problem with layered divs in IE 9 and lower. In IE 10, FF, Safari, etc. it works as it should. I'm trying to do the following two things: If a user clicks on a link a semi-transparent div ...
3
votes
2answers
103 views

CSS selector for general textboxes

Is there a way to select every kind of textbox with a CSS selector to give them all the same width, for instance? By textbox, I simply mean something that the user can type into. My problem is that ...
0
votes
2answers
55 views

If input:radio click checked radio

How do I detect when a radio button is checked? HTML : <label><input type="radio" name="test">One</label> <label><input type="radio" name="test">Two</label> I ...
0
votes
1answer
42 views

Implementing a counter in a stack program to count how many times an object has moved

all. I have learned about stacks and how they work and am working on an exercise to move cars into a parking lot via 2 stacks (2 lanes of the parking lot). My code needs some work but I am trying to ...
0
votes
1answer
29 views

Assigning a file input's file with jQuery

I have an empty file input field on a page that I would like to populate with a file that already exists on the page using jQuery. For example, I have the following link: <a href="download.pdf" ...
0
votes
4answers
40 views

jQuery - passing input field to hidden input value

Im trying to use the jQuery .change function to get an input field value: <input type="text" name="qty2" id="qty2" maxlength="12" title="QtyField" class="input-text qty2"> to apply it to ...
1
vote
2answers
39 views

char **argv[] segfaults when trying to get input from the command line

I'm trying to do the most basic of things and am hitting a brick wall. I'm trying to read in a file name from the command line to use later in my program, but I can't even seem to extract the name ...
0
votes
2answers
27 views

Button not linking to input field with javascript

I want the button to run the code in the corresponding function field, but I don't believe I have it set up correctly. The string or numbers entered in the field should be processed and then the ...
0
votes
2answers
31 views

Making fscanf ignore letters without a space before int

I'm trying (in C) to read from a file with lines like the following: GFE_1 GFE_8 GFE_19 I want to use fscanf to ignore the letters and _ and put the number at the end into a variable. Obviously ...
0
votes
1answer
96 views

Input does not get checked in IE8

I need to find a way on how to sort it out this issue with IE8 I have a table with my columns and rows <table> <thead> <tr class="body"> <th ...
0
votes
1answer
103 views

Why does my ajax request not work with hidden AJAX form inputs CakePHP 2.3

For some reason my ajax form does not work if I change my form elements to hidden. It does how ever work if i change them to inputs instead. Why would that be? Here is the view <div ...
0
votes
0answers
37 views

Jquery - Disabling text field and re enabling fields

Is there a jquery function to limit one submission on a text field once it has been submitted? And once the user deletes the existing information in that field should they change their mind, the ...
0
votes
0answers
58 views

File Input failure C++

I've been trying to grasp how reading and writing with the fstream class works, and I've become stuck. The program reads the magic number of the file correctly, and then suddenly fails to read an ...
0
votes
0answers
18 views

microsoft pixelsense/surface 1.0 simulator partly obscured

I am trying to simulate a project on my home computer, the Surface is located at my school so I need to be able to test my code at home most of the time. none of the tools such as finger, blob, or tag ...
-2
votes
2answers
44 views

how to kill allien characters in my string?

what i want to do is take a big input(read till users press enter(\n) ) and then call a function that puts the first word of this input(read till ' '). My problem is that even though it looks pretty ...
0
votes
1answer
21 views

Pair wise input redirect - bash

I have a file called input.txt which has the following 0 1 1 2 2 3 3 4 What I would like to do is redirect two lines to a programing like so: i = 0; ./program < input.txt[i & ++i] in a ...
0
votes
1answer
43 views

Getting jquery multistep working

I'm trying to make a multistep form with jquery using this: https://github.com/sheadawson/jquery.multistep But so far I can't seem to get it working properly because it doesn't hide the other steps, ...
0
votes
3answers
71 views

Activate input field from input checkbox

I want to activate the input field from checking the checkbox. I have a basic form here: <ul> <li> <label id="form-title" for="name3">Specifics:</label> <li> ...
0
votes
2answers
49 views

Read input from .txt in C++

I've got a .cpp which is prompted as follows: $ ./program file < file.txt Then I want to use the text on the file.txt for some functions inside my program. How can I access the input on the .txt ...
1
vote
3answers
43 views

Input using gets not working, but working with scanf

#include<stdio.h> void main(){ char str[100]; char letter; letter=getchar(); printf("%c",letter); gets(str); //Rest of code } On execution, the code skips the gets(str) line. But ...
0
votes
1answer
35 views

Primefaces style is applied on <span> instead of <input>

I'm working with primefaces on a screen where I used calendar and autocomplete I got the UI from the designer and started integration, I assigned styles like this <p:calendar styleClass="xyz" ...
0
votes
0answers
47 views

Saving a jQuery sortables list with input fields on each item

I have two jQuery sortable lists connected connected via the default '.connectedSortable' class so I can move items from one list to the other. I have the ability to save the lists by using a cookie ...
0
votes
1answer
67 views

set the value of inputbox inside a data grid through VB code

I have a asp datagrid one of the column is having one input <asp:DataGrid ID="dgItem" runat="server" Width="100%" CssClass="TableList" AutoGenerateColumns="False" ...
0
votes
2answers
48 views

How to select the previous input independent of the HTML structure?

I searched a lot trying do solve this problem but I just found specific solutions, I wonder if there's a way to select the previous input text independent of the HTML structure. Don't know if that is ...
-1
votes
1answer
55 views

Make sure input1 is not the same as input 2, if so then prompt error

I'm just curious, how do I make sure that my input1 is not equal to input2? And if that is the case then prompt an error? I am already using a def statement in my code to check that the inputs entered ...
0
votes
1answer
32 views

Reading in and recording a number in C

This is a homework problem. I have a C program that takes user input for a number of people's first names, last names, and ages. Right now it works and prints out the names to the console correctly, ...
0
votes
1answer
32 views

Place one HTML input directly below another with HTML

So I have a bunch of HTML elements I'm creating dynamically. I would really like the element "imageBox" to appear directly below the "mediaBox" instead of to the left of it like it is now. Here is my ...
0
votes
1answer
19 views

How can i get the input from a checkbox in python tkinter?

Hi i am trying to make a program in python using tkinter. I am trying to make the program open programs that have been selected in a check box. import sys from tkinter import * import ...

1 3 4 5 6 7 139