Questions tagged as 'input'

1
answer

Call input value within span

I have this line of code: <input type="text" class="form-control" id="usado" placeholder="Quantidade" aria-describedby="basic-addon1"> <span class="input-group-addon" id="basic-addon1" onclick="usaEstoque(usado,<?php echo $arrDados...
asked by 29.09.2015 / 15:46
2
answers

Do not lose the input text when switching pages

Good morning, I need to do the following: The user types some text in an input and this text is not lost if he changes pages. This input has no submit button. How can I do this? Can you do without BD?     
asked by 14.10.2015 / 13:43
1
answer

input inserted with "append" is not "recognized"

To try to make a form a little more dynamic! However, when adding new inputs with append of javascript, it is not recognized. And the effect is not realized. The effect in question is the redisplay of the text typed in the input A_1 in...
asked by 17.08.2015 / 04:00
1
answer

Input only with V or F

Is it possible to put an input where it only receives (V) or (F)? <script type="text/javascript"> jQuery(function($){ $("#resposta_vouf").mask("(a)"); }); </script> <input type="text" id="resposta_vouf" />...
asked by 15.03.2015 / 08:50
1
answer

Procedure in Package receive an array (coming from a cursor / function) as input parameter - Oracle

Good afternoon, I already have a certain experience with PL / SQL but I have now started working with the Oracle database and packages. I have a problem where my procedure in the package is getting two parameters and from there performing...
asked by 04.12.2018 / 19:25
2
answers

How to clear multiple input fields by classes?

How to clear the value of multiple input fields by classes? Using Jquery? I did that, but it did not work! form.find('input').not(".class1 .class2 .class3").val('');     
asked by 13.11.2018 / 10:20
1
answer

Update component / object Angular 6

I have 3 components that exchange an object with each other, how do I when to update one another also update alone? Example: I have components 1, 2 and 3, 1 calls 2 by passing an object and 2 calls 3 by passing the same object, all this in th...
asked by 24.10.2018 / 19:31
2
answers

Mirror inputs with their values

Is it possible for jquery to understand the elements of an array value coming from the html? ps: I do not know if it is correct to say that in html there is an array. I am creating with html and jquery a dynamic input that is having the v...
asked by 30.01.2018 / 19:59
1
answer

Input of type date in jQuery

I'm looking for a simple way to get the separated day, month, and year values from a input of type date , in jQuery. $( "#ano" ).html($( "input[type=date]" ).val( ) ); <script src="https://ajax.googleapis.com/ajax/libs/jq...
asked by 17.10.2018 / 06:07
3
answers

How to submit form when selecting checkbox?

I have a form in html, sending data to the php code, but I use the input type="submit" button to send the data and I wanted the checkbox to send the form. Here is my code below: insira o código aquiecho '<tr>'; echo '<...
asked by 09.10.2018 / 15:31