Tagged Questions

0
votes
4answers
31 views

Copying INPUT FILE value to INPUT TEXT with click in jQuery

I would like to copy the value of a input:file to input:text. I can do it with plan JavaScript but I will like to know how to do it with jQuery. ----JavaScript // This what the script would look …
0
votes
1answer
60 views

Getting user input from Win32 C++. WPARAM casted as int?

I'm working on a pre-existing codebase and I'm looking to have the user type any 1-2 digits followed by the enter key at any time during the code being run and pass that number to a function. …
0
votes
4answers
38 views

JS Events: hooking on value change event on text inputs

Hi all, I have a text input that its content is changed by a script not by user. So I would want to fire an event when the value changes. I can't find a suitable event for that. I event found this on …
1
vote
1answer
25 views

Trigger event of auto popup list selection via javascript

I have previously entered value 1111, 1222, and 1333 into a HTML text input. Now if I enter 1 to the text input, it should popup a list with value 1111, 1222, and 1333 as available options. How do you …
0
votes
2answers
23 views

input on focus or tab key pressed, move to center of screen

I have a number of form fields spanning over the page fold. When pressing the "tab" key to step through each input/select field it sits the next field on the bottom of the page fold. A few of my …
0
votes
1answer
52 views

Can’t select text in input box on IE

I have an input box that is inside of a div, the div has a background image and the input box inside of it is positioned and limited in size / font to work nicely with the background image. In FF …
0
votes
4answers
55 views

Check if a key is down?

Is there a way to detect if a key is currently down in JavaScript? I know about the "keydown" event, but that's not what I need. Some time AFTER the key is pressed, I want to be able to detect if it …
0
votes
1answer
46 views

Reading different data from a textfile delimited with semicolons in C.

How do one read different records of data that are separated with semicolons into an array in C? from textfile: Text One; 12.25; Text Two; 5; Text Three; 1.253 fopen ... for(i = 0; i < nrRecords; …
0
votes
1answer
59 views

Reading from a textfile into an array into the C programming language

How do I read into an array a string with space in it, delimited with semicolons from a textfile in the C programming language? ***from textfile*** "My Record; My Second Record; My Third" . . . …
0
votes
6answers
37 views

return type of input with jquery

I have a form with dynamically created form elements. I need to get the value of each element, and send an ajax request to make sure the data is ok (the easy part). I can get each elements value easy …
1
vote
4answers
82 views

Is it redundant to use the “name” attribute for input fields in modern web development?

Hello, I've noticed a lot of websites with form(s) containing input fields whose "name" attribute is specified even if it isn't used for styling or scripting purpose! Moreover, according to the …
0
votes
2answers
41 views

Converting drop-down select input to radio buttons which require one to be chosen

I'm using an e-commerce system which allows you to have several variations for each product - (for instance: large, medium, small t-shirts). However, we are having complaints from customers who add a …
0
votes
2answers
43 views

How to get values of <input type=”checkbox” /> that are checked?

There are multiple <input type="checkbox" value="..." /> in the page. I need to get each of the <input> that is checked to do some operation. I'm using jQuery.
0
votes
4answers
56 views

HTML - input value kept after Refresh

Usually, when a refresh is made on an HTML page, the values for input fields are kept (unless you do Ctrl+F5). Is there a header or other type of setting than can change this behavior, without …
0
votes
2answers
35 views

Cursor location in text-input fields

There is a lot of information on how to place the cursor exactly where you want it to be in a textarea. None of it seems to work for an <input type="text"> field. Basically, when the page …

1 2 3 4 5 27 next
15 30 50 per page