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
-
0
votes2
answers900
viewsHow to increase the input="text" font and cursor according to the desired size?
I applied a 30px padding and the cursor and input source="text" did not increase as the internal spacing applied, is there any possibility of increasing the size as desired?? I tried applying a…
-
0
votes0
answers374
viewsGenerate a PDF and write data to the database in the same form
I have a program that takes the name and email of the client to register in the bank and generate a pdf with this data. But I can’t send the registration data to the file that generates the pdf.…
-
0
votes1
answer38
viewsDefault value with imaskjs
I created a mask using imaskjs for monetary value in an HTML input: var element = document.getElementById("txtTeste"); var maskOptions = { mask: Number, scale: 2, thousandsSeparator: ".",…
-
0
votes1
answer1418
viewsHow do I put a mask on a Bank Account input in JS?
I need to create a mask to hyphenate the penultimate number, automatically, as long as it has at least 5 characters, in a bank account input, using pure JS. Thus: xxxx-x | xxxxx-x | xxxxxx-x.…
-
0
votes1
answer236
viewsWhat is the difference between Text Box and Input?
I’m making a medium fidelity prototype in the Pencil app and would like to know the difference between a Text Box field and Input and when to use them: Thank you!…
-
0
votes2
answers142
viewsWord problem using quotes when doing INSERT SQL
I’m having problems when I will perform the Insert in mysql when I have a word that contains ex Quotes (box d'agua) in any input form, when I have the mysql error saved. I have already changed the…
-
0
votes1
answer69
viewsHow to block the suggestion list of an input text?
I want to block that list of suggestions that appears when you type something in a text field, someone knows how to do it?…
-
0
votes1
answer51
viewsDisabled input does not pass to $_POST
These are my two inputs: <div class="span3"> <label for="cor11">CROMIA<span class="required"></span></label> <select class="span12" name="cor11" id="cor11"…
-
0
votes0
answers20
viewsassign last field of a table to an input text
I have a chart that stores a vehicle’s supplies and would like to make the following code work. I need to take the last record with the odometer mileage and already bring the specific input text,…
-
0
votes2
answers211
viewsPass an id "value" to an input field
I use the following Function: public function autoCompleteCilindro($q){ $this->db->select('*'); $this->db->limit(5); $this->db->like('passo', $q); $query =…
-
0
votes2
answers32
viewsHow to rename an input from a selector?
I would like to know which script is able to rename an input by choosing a selector. My input name is THUMB, if the person marks the first option, but I would need the input name to change if I…
-
0
votes1
answer210
viewsCalculate values with Inputy type="range" and Javascript
Dear, hello. I need to do some calculations using input type="range", but I am not able to run the code on my machine, only in online editors and I would like to know why this occurs? I use windows…
-
0
votes1
answer76
viewsIn CSS why does the :Empty pseudo-classes work and the :not(:Empty) do not work in the input?
I’m trying to make a form template where I think better of the user experience giving visual feedback when the field is filled. Then I came across a "problem" that I can’t explain... Because in the…
-
0
votes3
answers916
viewsHow to send form when selecting checkbox?
I have a form in html, sending data to php code however I use the button input type="submit" to send the data and wanted to send the form by clicking the checkbox. Follow my code below: insira o…
-
0
votes1
answer70
viewsInput Submit value in two colors
My first question here... starting my studies... I have the following problem: <input type="submit" value="Enviar E-book"> I need in the Bt text, "Send" to be one color and "E-book" to…
-
0
votes1
answer26
viewsSend Text Input to a Formdata (angular)
I have an image upload form, but I also want to pass a text field next to the image, the api is working perfectly and when I send by Insomnia it creates everything right in the bank, but when making…
-
0
votes1
answer437
viewsDate input in jQuery
I am looking for a simple way to get the values of day, month and year separated from one input of the kind date, in jQuery. $( "#ano" ).html($( "input[type=date]" ).val( ) ); <script…
-
0
votes1
answer1648
viewsKnowing if input is focused or not in real time
Hello, I would like to make a condition in javascript where the input is focused, a label stay none and when the person clicks off it and "blurs", the label reappear. But I don’t know how to make…
-
0
votes0
answers13
viewsinsert calelanario plugin with jquery
I’m trying to insert this calendar https://colorlib.com/wp/template/calendar-17/, more by what I see has no documentation, by the little I know about jquery, it would be necessary to move the…
-
0
votes1
answer721
viewsProcedure in Package receiving an array (coming from a cursor/function) as input parameter - Oracle
Good afternoon, I already have some experience with PL/SQL but now I started working with oracle and Packages. I have a problem from which my package process is receiving two parameters and from it…
-
0
votes0
answers16
viewsHow to get user input before they press Enter
Guys, I wanted to know how to get the raw user input, before it presses Enter, well what I want to do is, using Threads I listen to a TCP client, when it sends data, I wanted it to overwrite the…
-
0
votes2
answers132
viewsSend input checkbox values, only those selected to window.open()
I would like to send the checkbox values, only those selected to a page using the window.open(): <div class='checkbox'> <label><input type='checkbox' name='checkbox[]'…
-
0
votes1
answer721
viewsHow to Add Age to Input
All right with you guys?! You could help me with a situation. I’m making a simple form, in it I have two inputs, one of them is the Date of Birth and the other is Age. What I am wanting to do is…
-
0
votes2
answers174
viewsProblem with input of more than one integer with input
I’m having trouble capturing the input of more than one integer into one input. Ex: numero = int(input('Digite o primeiro número aqui: ')) numero_1 = int(input('Digite o segundo número aqui: '))…
-
0
votes0
answers34
viewsPrevent user to type numbers and symbols. However problem something use Capslock Buttons
When I click the input and hit Caps Lock, Backspace, it sends the patch message. for example, I type the normal and safe Backspace input to delete everything, when it comes at the end it shows the…
-
0
votes2
answers470
viewsread the elements of an input matrix
I have a code that represents a checkerboard (8x8 matrix): print(f'ATENÇÃO: ') print(f'Insira 0 nas posições vazias do tabuleiro;') print(f'Insira 1 nas posições das peças pretas e 11 para as damas…
-
0
votes2
answers50
viewsHow to query 2 columns in a single input text
Hello, How do I use a single input text to query 2 columns? Currently my code has an input=select and an input=text but in the text I want to see 2 columns.. how do I do this in the sql query? Note…
-
0
votes0
answers163
viewsSend input data without Ubmit
Hello, I am programming a table with dates, and to filter I am using an input data range with 2 mini Calendar. I would like to know how to send and use this information without using Submit :)…
-
0
votes1
answer722
viewsValue appears and disappears after click-Javascript
Good evening, I made a javascript logic of inputs receiving the value of an array, all right however, when you click on the button to happen the event the values appear and disappear from the input…
-
0
votes1
answer489
viewsInsert values into an INPUT type="number" or SELECT from the database
Can I import database values into an input or select field using html, php, Mysql and/or bootstrap only? (Obs.: do not master Javascript or Json) Follow image to illustrate, then I explain what I…
-
0
votes1
answer1094
viewsFetch file path from input type="file"
Good afternoon, for some time I have a problem, I have the following input of type file, to get some file any. <form class="form-signin" method="post"…
-
0
votes1
answer49
viewsInput error inside Div
I have a table and I’m making a filter worked, but when I put the input inside the div to align can not filter, even takes 1 letter but does not filter more. <script type="text/javascript">…
-
0
votes0
answers41
viewsTreatment of exceptions of an Inputbox
I am doing an academic work where I have to pick up a data typed by the User and I am using a Inputbox for such. But the Inputbox displays several mistakes which I am not aware of. by clicking…
-
0
votes1
answer326
viewsInsert text to a textarea without modifying text that already exists with input
Personal how to insert a text to this Textarea without Modifying the value that is already inside it when filling in the inputs? I have a preview https://jsfiddle.net/orpwmc5b/3 when I type in…
-
0
votes1
answer174
viewsDisplay the service name in select and the value in the input (Codeigniter)
I am enthusiastic, I do some simple things for a hobby, and in this case I’ve caught up with a part that I imagine for you must be very simple! I have a task system, in the form I have a service…
-
0
votes2
answers94
viewsjQuery selecting the element itself
Well I’m new in jQuery and I’m having a problem, as I do to select the element itself and not what is inside it, follows code: $('#add_phone').bind('click', function(){ var html = ''; html +=…
-
0
votes0
answers78
viewsJquery does not serialize radios input value
Ola, I have a form that is sent via Ajax, I had to add some radio inputs. However the method serialize() does not take the values of the radios (I have two groups of radios in this form), all the…
-
0
votes1
answer335
viewsHow to insert multiple data at once into the database coming from multiple inputs with the same name?
I am generating lines through javascript for the user to register several information at once in the table. When I send the request, the database only records a record and needs it to take all the…
-
0
votes3
answers99
viewsMy code does not recognize the SCRIPT
I am creating an online wallet to learn and I have a problem, I wanted to format my INPUT with a Coin mask and from what I saw Jquery is a good option. I saw a tutorial (in this case:…
-
0
votes1
answer143
viewssubmit php variable and form with single Submit
good evening everyone, I’m doing a job at my college and I’m having a hard time at one part. I’ve researched and tried several ways, as I’m starting maybe there’s another way that I don’t know. I…
-
0
votes1
answer66
viewsPOST not receiving form input
In my code I have this form on HTML but in giving Ubmit in the form mine POST of PHP does not receive the image input. code HTML down below: <form action="/news/createsubmit" method="post"…
-
0
votes1
answer121
viewsEach input="file" Jquery does not validate
I have the following code on the form: <div class="form-group "> <small id="small-alert-pic">Máximo de 7 fotos</small> <small id="picture-size"></small> <input…
-
0
votes1
answer474
viewsDisplay numeric keypad when an input receives focus on mobile version
I’m developing a web interface with HTML5, CSS3 and the framework Bootstrap 3, and using the type="number" on the tag <input> on smartphones the native keyboard of Android open in numeric…
-
0
votes1
answer64
viewsClear input and insert new value into it
The combobox highlighted in red when selected triggers an action in jquery to take values from other inputs and add them to the input in blue (Hidden type, but this text for you to see what is…
-
0
votes1
answer118
viewsInserting elements into an HTML list
I wish that when sending an element in the input, all elements present in the name array are displayed one below the other after the click, and not all in the same line as is currently happening…
-
0
votes0
answers44
viewsIn JS forms, using the <input> tag in html, why can’t I link a variable in the <script> directly to the input?
<h1>Somando Valores</h1> <input type="number" name='txtn1' id="txtn1"> + <input type="number" name="txtn2" id="txtn2"> <input type="button" value="Somar"…
inputasked 4 years, 7 months ago Pedro Raul 1 -
0
votes1
answer496
viewsDynamically add Vuejs/Laravel inputs
I’m learning how to work with Vue.js, and I need something relatively simple but I couldn’t solve, generate inputs dynamically in a form. Basically the form already comes with an input, and whenever…
-
0
votes1
answer198
viewsUse variable obtained via input and declare in URL
Create a screen with one that should be named after a user on Github. After entering the user name and clicking the search button application must search for the Github API (as URL below) data from…
-
0
votes1
answer489
viewsRender Dynamic Input Values - Vuejs
I am doing a project with Vuejs that has 1 form and its data is rendered on the screen, however, this form has options to add more inputs and consequently render this data as well. Then I get input…
-
0
votes1
answer264
viewsHow to insert value in Ionic input 3
Good afternoon guys, I have a question and so far I have not found any solution, I need to pass a value from the database to the input on the login screen, but I did not find how to do this. My code…