input

jQuery: animate text color for input field?

I've got this really simple piece of code that I thought was the correct way to get jQuery to animate the text color for a given input field. $('input').animate({color: '#f00'}, 500); But it won't work. However, I can change the text color: $('input').css('color', '#f00'); I've tried this in both Safari 4 and Firefox 3.5 with the ...

How to minimize the size of <input type="text" /> (both width and height)?

I tried: font-size:40%; But found it not working ...

How to get {id:value} pairs and copy to another table with the same structure efficiently from the table below with jQuery?

<table id="experiences" cellpadding="0" border="1" width="100%" height="100%"> <tr><th>Company</th><th>Job Title</th><th>Industry</th><th>Job Function</th><th>Start Date</th><th>End Date</th></tr> <tr> <td><input type="text" name="company1" class="w100" /></td><td><input type="text" name="jobTitle1" class="w100" value="" /></td><td>...

Temporary Input Redirection in Bash

I am looking for a way to dump input into my terminal from a file, but when EOF is reached I would like input returned back to my keyboard. Is there a way to do this with Bash (or any other commonly-available *nix shell)? Details: I am debugging a server program which executes a fork to start a child process. Every time I start a debu...

Submitting a jQuery ajax form with two submit buttons

I have a form that looks like this: <form action="/vote/" method="post" class="vote_form"> <input type="hidden" name="question_id" value="10" /> <input type="image" src="vote_down.png" class="vote_down" name="submit" value="down" /> <input type="image" src="vote_up.png" class="vote_up" name="submit" value="up" /> </form> W...

MIPS how can you compare a character taken from input?

Hello, My program asks the user if the number he/she is thinking of is in a list. The user inputs a y or an n. How can I check if a user has entered y or n in assembly? Is it sufficient to put the user input into a register and branch if equal to 121 (decimal ASCII code for 'y') or branch if the value is equal to 110 (decimal ASCII code...

Positioning form's inputs with em unit.

I was looking for way to set position for inputs other than using tables. I googled this: Applying CSS to forms and I've made a test site: korran.ovh.org/test/test.html Text-type inputs looks good, but submit is moved a little to the left. Interesting thing is that if I set font-size: 10pt it looks perfect. But with default 12pt it's mo...

Dojo disable all input fields in div container

Hi Folks. is there any way to disable all input fields in an div container with dojo ? something like : dijit.byId('main').disable -> Input ? ...

JS regex validation help

Hay guys, i need help with a REGEX. I have the got the value of an input box with this. fileext = filename.split(".").reverse()[0]; I need to make sure this is a jpg, gif or png. Else throw an error. Thanks ...

dropdownlists vs input (HTML)

I've recently run into a problem where too many drop down lists on a page have resulted in performance issues. I was just wondering if changing these dropdownlists to inputs would remedy the situation at all? I was thinking of using the spinner jquery UI plugin as an alernative. Any suggestions? thanks in advance Shawn ...

Limit user input to allowable comma delimited words with regular expression using javascript

I want to force the user to enter any combination of the following words. the words need to be comma delimited and no comma at the beginning or end of the string the user should only be able to enter one of each word. Examples admin basic,ectech admin,ectech,advanced basic,advanced,admin,ectech my attempt ^((basic|advanced)|admin|ec...

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 most cases, you just add a child element and add padding to that one instead of the one set to 100%, but for form inputs, that's not a possib...

choose file box by clicking on image ? (not with browse button)

hi, is it possible to show "choose file" window, when i click on some image ? i want to hide that input and browse button, which shows when i type thanks ...

If input2 empty copy value from input1?

Hello everyone! This is my first message here so I hope that newbies also get help :) My problem is following: let's start with code first.... javascript: $(document).ready(function(){ if ($("input#datum2").val() == "") { $().click(function(){ $("input#datum2").val($("input#datum1").val()); }); } ...

Limit input box to 0-100

I have an input box that takes values from 0-100. I want to prevent users from writing anything larger or smaller. I've been using the jquery keyfilter plugin to limit the input of a field: http://code.google.com/p/jquery-keyfilter/ This plugin can limit the input to numerals, but not within a range. How do I prevent users from enterin...

How to store and compress data for real time data logging?

When developing software that records input signals (numbers) in real time, how can this data be best stored and compressed? Would an SQL engine be good for this, permitting fast data mining in the future, or are there other data formats that would be suitable or compressed enough for upto 1000 data samples per second? I don't mind buil...

[Django] Group Input in Forms

Hi! I've this django form class CustomerForm(forms.Form): first_name = forms.CharField(label=_('Nome'), max_length=30) last_name = forms.CharField(label=_('Cognome'), max_length=30) business_name = forms.CharField(label=_('Ragione Sociale'), max_length=100) ...

asp.net mvc - obtain values from a bunch of inputs selectively

I have a bunch of text inputs on my page (HTML.TEXTBOX, generated through for loop), and I want to read their values and commit to database only when user has modified something in those textboxes. What would be a proper way to do that? (Do you think it may make more sense to commit the entire thing to database if number of textboxes ...

Writing a windows driver for an emulated input device

My application needs to behave as a virtual joystick (imagine dragging a square with the mouse and translating that to the output of an analog joystick) and send some keystrokes over the network to another computer where the driver would receive that input. I only need to support XP, Vista and Win7. Maybe it can be done without writing...

How to read formatted input in python?

I want to read from stdin five numbers entered as follows: 3, 4, 5, 1, 8 into seperate variables a,b,c,d & e. How do I do this in python? I tried this: import string a=input() b=a.split(', ') for two integers, but it does not work. I get: Traceback (most recent call last): File "C:\Users\Desktop\comb.py", line 3, in <module> ...