Most voted "input" questions
It is an input element that represents a typed data field, usually as a form control to allow the user to edit or enter data.
Learn more…466 questions
Sort by count of
-
-2
votes2
answers77
viewsRemove span added with checkbox
I have input in html <input value ="Get" onClick={GetSelected} type="checkbox" value="SLA contratual" /> when clicked a span is added to a list <li id="teste"></li> I need to…
-
-2
votes1
answer71
viewsValidation of <input> with javascript
I would like to do an inline validation on an input. I want that if the user type something other than 0 or 1, a message appears warning that only 0’s and 1’s are allowed. Here’s what I’ve tried:…
-
-2
votes2
answers48
viewsthis.Test1 is Undefined
I’m trying to move my application to the paradigm OO, but at the time of picking the value of the input is returned Undefined. I wanted to know the why that this error is made, and the…
-
-2
votes1
answer31
viewsSelect Mandatory to select a different value
I have four input type="time" on my page and in front of them a select. By my default select comes disabled. I made a script that enables mine select only if at least one of the four input…
-
-2
votes1
answer15
viewsHow do I put a required input without the tag form?
Whenever I put the required property, my scrip stops working. How can I insert a required input without the tag form? var cont1 = 1; var cont2 = 2; var cont3 = 3;…
-
-2
votes1
answer54
viewsHow to pass the value of Sg. Input to a variable in another part of the code?
I’m doing a program to present in the college project, but I’m doing it through the window method by pySimpleGUI, I wanted when the person typed in Sg. Input a quantity, that quantity was calculated…
-
-2
votes1
answer32
viewsHow to take this data from filter_input_array and insert it into another php file
My filter_input_array receives all the data from the form, but I don’t know how to take this data and insert it into another php file <?php $data = filter_input_array(INPUT_POST, FILTER_DEFAULT);…
-
-2
votes1
answer34
viewsinput type="time" delete value when checkbox is unchecked
Good afternoon everyone. I have the following HTML code <input type="checkbox" id="checkmarcacao1" name="checkmarcacao1" value="checkmarcacao1"> <input type="time" id="hora101"…
-
-3
votes2
answers518
viewsFill in second input when typing in first
I have an html form with SOCIAL REASON and FANTASY NAME, so I wanted that when typed in the field "Social Reason" the field "Fantasy Name" was filled automatically with the same value. Thanks in…
inputasked 6 years, 2 months ago Carlos Roberto 1 -
-3
votes1
answer45
viewsHow can I display content only when selecting an input type=radio
I am doing a project and I would like to know how I can make the "content a" appear only when the input "A" and the same way with the B, using jquery <input class="opcaoa" type="radio"…
-
-3
votes1
answer82
viewsHow to skip the line in python input?
Hello I’m making a code here to send emails, and I wanted that at the time of the inputs of the message when I hit the Enter it jumps the line and does not stop the input, that it only stops when…
-
-3
votes1
answer33
viewsHow to concatenate two types of different values but of the same input into a list in python?
I have the following code that reads a person’s name and age: pessoas = [] p = [str(input('Digite o nome e a idade da pessoa no formato: "Nome 23": '))] pessoas.append(p) print(pessoas) Supposing I…
-
-3
votes1
answer53
views<input>: "required" is not set, yet the completion is required
I have an input type url within a form, and I have not set the "required" attribute of it, and even then field completion is being required. I also tried: required="false" and required=false, and…
-
-4
votes1
answer694
viewsFill list from an input
I have a input that after being filled and pressed Enter, she creates a list with checkbox's. The problem is that when it is populated again, it edits the already created list item and I want to…
-
-4
votes2
answers1469
views2 INPUT in 1 field only
I have a form that is provided by the bank to generate a banking bill. I need to split the "name" field in two in my html form. I need to get the NAME of the client and also the NUMBER of his…
-
-9
votes1
answer407
viewsHow to change the mask of an input type date
How do I solve this problem ? I want to remove this "dd/mm/yyyy"…