input

html input button style CSS3

I saw some results via the related questions but didn't actually seem to show what I want. Looking for a way to simply style the button in all major broswers easily. <input type="file" name="file" id="file" size="29" class="formButton" /> <span class="smalltext">(.txt only)</span> I want the browse button to use the CSS, I have seen...

Blackberry: Read a text file packaged in the project (faster)

I've tried this approach: http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800620/How_To_-_Add_plain_text_or_binary_files_to_an_application.html?nodeid=800687&amp;vernum=0 But it's REALLY slow for slightly large text files. Does anyone know of a better way of reading a plain text file that is inclu...

IE 8 input type text/password bug

<tr> <td>Password:</td> <td><input type="password" name="j_password" id="j_password"/></td> </tr> The code above increases the CSS offset of the input element 6 pixels right. If the type is changed to 'text' as opposed to 'password' the CSS offset is not increased. I would file this as a bug with MS but I don't have the time nor e...

Form inputs hash navigation and serialization using Prototype.

Given this object is SELECT input which name = "record[exp_items][1279485786799][batch]" and I want to find all fields in "record[exp_items][1279485786799]" artificial hash and serialize them. Keep in mind that 1279485786799, exp_items always change, so I need either move to one level up in hash and serialize it or find all these objec...

Improvement/s to my Java generic console input method?

Using Java Generics, I tried to implement a generic console input method. public static <T> T readFromInput(String message, Class<?> c) throws Exception{ System.out.println(message); Scanner scanner = new Scanner(System.in); try { if(c == Integer.class) return (T) Integer.valueOf(scann...

Form is missing elements on submit after ajax td replace.

I have a school district drop down with an onchange event tied to it. When it changes, then I do an ajax call to get a list of schools that are in that district. The html on the ajax page has checkboxes for each school so someone could be assigned to multiple schools under a single district. The ajax works fine and I modify the html of a...

pass javascript variables to form/input fields as onsubmit href link

id like to have an input box that a user can enter a search term into that gets passed to maybe a javascript function that then combines some url segments with the search term creating a full url. up until now its been working fine without a form around it, but i would like to add a form to it so users can just hit enter rather than clic...

Stream of readLines

I'm attempting to create an infinite stream of strings from readLine calls: import java.io.{BufferedReader, InputStreamReader} val in = new BufferedReader(new InputStreamReader(System in)) val input: Stream[String] = Stream.cons(in readLine, input) But it appears that the readLine call isn't being called lazily. Immediately after ente...

What is the correct way to stop form input boxes auto-completing?

I have a form which includes a JQUERY datepicker attatched to an <input> on the form. My problem at the moment is that since the input is a text-box, most major browsers attempt to auto-complete entries for the user, which looks very silly over the datepicker: Browsing the internet, I discovered that way back in the days of IE-5, Micr...

Keyboard input in games (for GLUT)

Almost every game use keyboard as input. I have been searching for 2 days on this topic and found quite much about it. Keyboards have many disadvantages, but main problems I found are different layouts and second that if you are pressing 3 keys at time, it can lead to corruption (row-column error). If you don't know what I'm talking abou...

input[type="submit"] - change background when clicked

Hi, I have a simple <input type="submit" value="Search"> submit button. In the CSS i have styled it with input[type="submit"] and input[type="submit"]:hover so it changes its background by default and when hovered. Is there a way to change its background when clicked? ...

How to run code inside .live() on document ready?

$('#foo').live('keyup', function (e) { var input = $(this).val(); // code to process input }); This is used in a post form and I need to run the code inside the live() when the document is ready. Is there a way, other than to wait for a key press, to invoke it? ...

jQuery clone and appendTo duplicating wrong content

I am trying to have a form of text inputs. All inputs will in an ordered list OL/LI structure. There will be a + symbol next to the input that when you click on it, it should create a sub-OL and make a secondary list with another input. If you click it again, it adds another input. The new inputs have + symbols as well and you can do the...

jquery: how do I serialize file type input in jquery

Hi, I want to serialize file name of the file being uploaded in the input type file , but when I serialized the form in jquery I just got the input type text and others not the file - how do I do it? is it something jquery fails to achieve?? this is the html, [PHP]ask_add_xml.php" method="post" enctype="multipart/form-data" id="form_q...

Best way to read a textbox line by line in VB.net

What's the best way to read in a the contents of a textbox line by line in VB.net 2.0? I'm currently using the one listed at TextBoxBase.Lines Property at MSDN but wanted to know what other ways could one read in a textbox line by line in VB.net. ...

Why is hidden text input boxes showing up below instead of to the right?

Hi, I found an odd error when I was splitting up my code into a new page (and reorganizing the questions). Sorry if my code is sloppy, I've done alot of re-learning as I begin to incorporate CSS and jQuery into my knowledge base...last time I made a website was with tables back in high school. Anyway, the problem I have is the hidden in...

Is it possible to submit JavaScript array along with form submission?

I would like to create a list-like form for a web application. Elements are added to, modified and removed from the list, and the user clicks "Submit" to send the list to the web application for further processing. I would like to have two INPUT fields that I can add data into, click an "Add" button, and the data is added to both the DO...

Java Non-blocking Read

Hello, I'm trying to read in from two different input streams (stdin and stderr of a child application) and print them in one combine frame. I've never done this before, and am wondering about best practices. I can spawn two threads and let them both block on the input stream. Is there a better way? Thanks! ...

show/hide div depening on input value

I want to show div#cool when user will type "cool" in input field or div#good when user will type "good" and so on. Everything should work in real-time. ...

Quickly checking for telephone number format in input text using PHP?

What's the most efficient way to quickly check for telephone number format from a form input text? ...