The HTML tag is designed for user input in HTML forms.
-1
votes
1answer
52 views
Can I set word-wrap:break-word to input of type submit?
Can the CSS word-wrap: break-word be applied to an <input/> of type submit?
Ive applied that css but its not doing anything which isnt what i expected. Im trying to make my submit input wrap ...
1
vote
3answers
28 views
How can I read out an <input> value via the name attribute
I've got the following output in my HTML
<input type="hidden" value="28" name="variation_id">
This value is generated dynamically. I want to write an If else statement that is dependant on ...
0
votes
1answer
23 views
django variable into input text value
I need to put the content of a django variable into an input type text value. The problem is that the django variable has two words and the input only shows the first one.
For example:
<input ...
1
vote
6answers
53 views
How can I replace html text dynamically?
I'm adding the text "I Tot I Taw a Puddy Tat!" to the top of a page with jQuery this way in the ready function:
$("#Twitterati").html("<h3>I Tot I Taw a Puddy ...
1
vote
3answers
72 views
How do you determine the input type in Dart?
I'd like to find all the radio buttons on a form and leave the other input types alone. My code looks like this:
form.queryAll("select, input").forEach((Element el) {
if (el is ...
0
votes
2answers
78 views
JQuery date inputs condition
I am having the following JQuery function that is working properly:
$(function () {
$('#accmenu').change(function() {
$(".insightsgraphs div").hide();
$(".insightsoptions ...
0
votes
1answer
24 views
Removing input placeholder on a printable version of an html page
I have a form with input fields. Each input field has a placeholder attribute.
There is also a link displaying the printable version of the same form.
My problem is that if I leave the placeholder ...
0
votes
2answers
80 views
Why file open dialog opens twice on clicking the button in FireFox
I have a file <input> field and a <span> decorates the input field:
<span class="span5 btn btn-primary btn-file" id="chose_files_btn" onclick="filechose_button.click()">chose files
...
0
votes
1answer
63 views
Searching through JSON objects with input from HTML input
I have a JSON file which I get using jQuery.
I would like to know how to search through the items and only get the items related to the HTML input.
This is what I tried:
function Search(form) {
...
4
votes
2answers
111 views
How to make iPad HTML5 date default to blank/empty when using next button
The iPad defaults to today when an input type="date" gets focus (due to next/previous buttons and I presume tab/shift-tab using bluetooth keyboard) e.g. test using http://jsbin.com/etovur/1 on an ...
0
votes
3answers
97 views
Knockout event binding for input keypress causes weird behavior
Long story short, I want to enable users to hit enter on an input element and certain method in my viewmodel be called. Here is my html input:
<input id="searchBox" class="input-xxlarge" ...
0
votes
3answers
46 views
jquery - clear value from input when another value is empty
i have 2 inputfields
<input id="pass1" name="pass1" value="" size="12" type="password" />
<input id="pass2" name="pass2" value="" size="12" type="password" />
when id="pass1" has no ...
0
votes
1answer
95 views
What is the max number of files to select in an HTML5 [multiple] file input?
I have 64000 small images I want to upload to my website (using existing validation, so no FTP etc). I've created an HTML5 [multiple] type=file input for this a while back to be used for a hundred or ...
1
vote
0answers
101 views
IE9 issue - Changing the placeholder attribute of an input tag with JQuery Mobile
When using the HTML5 placeholder attribute in an input tag, it displays fine in IE9 despite a lot of comments indicating otherwise.
For example:
<input id="email_input" placeholder="E-mail ...
3
votes
1answer
84 views
Fill input file form with JavaScript [duplicate]
I need to fill an HTML form with JavaScript to set the path of a file for upload it. The web that this form belongs to, already has a visual upload implemented, but
<form ...
0
votes
0answers
29 views
Are there any limits imposed on multiple file upload fields?
I have a file upload field such as:
<input type="file" name="file" multiple="multiple">
However I'm handling the transport using this plugin: https://github.com/blueimp/jQuery-File-Upload
...
4
votes
8answers
178 views
How safe are the new HTML5 input tags
I am thinking to use the Input Type tags in my web application like
<input type="email">
<input type="number" required="required">
I'm just curious how safe is to use them , Is ...
0
votes
1answer
152 views
Show text cursor for readonly inputs in WebKit
<input value="Default" />
<input readonly value="Readonly" />
http://jsfiddle.net/EBQ3U/
In Firefox, clicking on the disabled input field reveals a non-blinking text cursor. I like this ...
0
votes
3answers
449 views
How to add button inside input
I am trying to achieve this:
I want the blue arrow to act as a button with hover and onlick triggers;
Is this possible??
2
votes
4answers
1k views
How to handle floats and decimal separators with html5 input type number
Im building web app which is mainly for mobile browsers. Im using input fields with number type, so (most) mobile browsers invokes only number keyboard for better user experience. This web app is ...
2
votes
1answer
126 views
How can I consistently detect browser support for HTML5 search inputs?
I have a search input on an HTML 5 page that I need to work in multiple browsers:
<input type="search" placeholder="type here..." />
I detect whether the browser supports search by seeing ...
6
votes
1answer
69 views
Javascript: Understanding File interface
I'm getting started with Javascript and trying to understand some fundamentals. The questions is not specifically about File interface, but it is what I'm trying to figure out.
In my HTML file I have ...
1
vote
0answers
140 views
find HTLM input radiobutton from vb code behind, and if value is empty hide the radiobutton
I need help finding HTLM input radiobutton from vb code behind onLoadpage, and if radiobutton value is empty I need to hide the radiobutton. I tried
`
For Each gvr As DataListItem In ...
0
votes
1answer
61 views
Do the values in the accept attribute require a computer to know the mime types?
so I have a standard <input type="file" accept="..."/> where the accept, is a large list of different mime types. I already verify the filetypes on the server backend but I want to be sure I am ...
0
votes
1answer
97 views
transparent css not working in chrome
I have following css to set background of input and dropdown which works in IE and Firefox but doesn't work in chrome:
.user-fld input{width:338px !important; margin-bottom:0px !important; ...
3
votes
2answers
81 views
How can I use several form inputs with the same name?
I have several checkbox (I don't know number of them) that create from a loop in a form.
<form>
<input type="checkbox" name="id" value="id">
<input type="checkbox" name="id" ...
0
votes
1answer
79 views
html prevent scrolling also prevents html5 input type range
I have an html web app, and I am adding sliders like so:
<form oninput="output1.value=slider1.value">
<input type="range" name="slider1" value="50"/>
<output name="output1" ...
1
vote
2answers
114 views
Does an input have an “original value” attribute?
With the latest changes to jQuery there are the different methods, .prop() .attr().
What I am wondering is if there is a way to get the original value of the input when the page was loaded?
I know I ...
2
votes
1answer
670 views
Event fired when clearing text input on IE10 with clear icon
On chrome, the "search" event is fired on search inputs when user clicks the clear button.
Is there a way to capture the same event in javascript on Internet Explorer 10?
6
votes
4answers
524 views
Android browser refreshes page after selecting file via input element
I have a mobile web page which includes an input element of type 'file', to allow users to upload image files to a server. The page works fine on iOS, and on a Nexus 4 (Android 4.2.1) in the Chrome ...
0
votes
1answer
156 views
How to get form onsubmit to check terms for Google Checkout button
I'm using Google Checkout and having a problem with the onsubmit function.
I have an "Agree to terms" checkbox that I've put in place so that users must accept the terms before continuing with the ...
4
votes
4answers
589 views
Is it possible to run some HTML5 input types in IE8?
Is it possible to run some HTML5 input types in IE8 with any library??
for example with range.
Points: <input type="range" name="points" min="1" max="10">
<input type="submit" ...
1
vote
1answer
112 views
Select all text in an <input /> when it gains focus
I've got a textbox (set to readonly) and I need its' contents to be selected for easy copy/paste when it gains focus. Using the code below it only seems to quickly select the text and then unselect ...
0
votes
1answer
274 views
IE8 Input Element Tooltip Issue
I have an input element in IE8
<input name="aa" value="0" title="show tooltip"/>
The tooltip only shows up when my mouse hovers over the empty space in the input box. If the box is filled ...
3
votes
2answers
577 views
How to compare jQuery val() and JavaScript value
When I do the following comparison I get false although both val() and value visually display the same value:12
if ($(this).val() == txt.value)//returns false
When I alert both $(this).val() and ...
0
votes
0answers
36 views
Chrome messing with email/password account settings webpage
An account settings page has an email and password field so you can edit those. However, only in the Chrome browser, if you told Chrome to remember your username/password when you logged in, the ...
2
votes
1answer
363 views
Autocomplete dropdown - submit on click/enter key
Somewhere I found an autocomplete script which suits me perfectly, but there is one thing that I don't know how to change. When you click on something in dropdown it doesn't submit this string, you ...
0
votes
1answer
53 views
Update bg colour of text input in html form via javascript
I have a form that I want to validate before the user is able to submit it. To do this I have written a basic js file that checks a value is not left blank. In the event that this is the case I want ...
1
vote
0answers
39 views
Input type Color on Chrome Packaged App
I would like to know how to use input[type=color] on Chrome Packaged App. When I open the HTML file on the browser, the input[type=color] works well, it pop ups the color picker, but when I used it on ...
0
votes
5answers
117 views
Processing array in php
I got this 2 array in a form to be process. However, i only manage to get the output from only one of the array. Sample as below :
<inputs id="location" type="text" name="data[]" value=""/>
...
0
votes
1answer
102 views
Best way to get dynamic fields in Django
I have a Django application that allows people to create a record. A record can contain one or more people and the form by default contains three fields to capture a person's name. One for first name, ...
0
votes
1answer
115 views
traverse array of form element names with different indexs
Hey guys was hoping you could help me out
I have a form, with a dynamic number of specific input fields with an array name having a unique but random index.
Now I want to traverse these fields but ...
1
vote
2answers
3k views
input field disabled until radio button is checked (HTML)
I have two fields one of them is a text input field and the other is a select tag.
The thing is I want one of them to be enabled only
and the user should choose one to enable by clicking on one of the ...
1
vote
3answers
342 views
Send a textstring from android app to a form on a website?
I'm trying to paste a string from my application to a website.
My application looks as following: one EditText and one Button. My button opens a website with an open text box.
<input ...
0
votes
3answers
2k views
radio button checked show div
I have this code:
<div style="padding-bottom:11px;">
<input class="radio" type="radio" value=" join our table" name="Choose:">
<label class="optionLabel"> join our ...
2
votes
2answers
91 views
Combining two input boxes into one using JQuery
input[type="checkbox"].focus {border:0px;}<br>
input[type="text"].focus {border:0px;}
How can I combine the two things into one?
$("input[type='text'],input[type='checkbox']").focus ...
0
votes
1answer
65 views
html input range step as an array of values
I've been playing around with the input type=range for the first time, and ideally I'd like to set the step value to an array of values. I looked over the spec and I see the possibility for a datalist ...
0
votes
1answer
3k views
Get data from file input in JQuery
I actually have a file input and I would like to retrieve the Base64 data of the file.
I tried:
$('input#myInput')[0].files[0]
to retrieve the data. But it only provides the name, the length, the ...
0
votes
1answer
101 views
What's the correct way to use new input types in html5 maintaining fallback for no support?
The title is pretty explanatory, basically I want to use a new input type in this case "search" while falling back to a type="text" if the browser doesn't support search.
I was guessing it could be ...
-3
votes
3answers
76 views
how to align texts inside of a input?
for all default inputs the texts you fill start on the left, how do you make it start on the right?
thanks




