I need to do the following onkeyup of inputs that have class virgula_nao , obey the function:
$(document).on('keyup', '#virgula_nao', function () {
valor_do_input = valor_do_input.value.replace(/,/gi, ".");}
});
I do...
I'm doing a project where when I click on employees it opens a page with the listing of employees as you can see in the photo. I need the name of each employee to be clickable, to be able to later open the complete page of the official with all...
I have a new question and this has been the best place to find answers, since thanks.
My problem and the following, I'm doing a school questionnaire for my son.
And a simple thing, at least it should be. A question with 3 answers, one right and...
I have a script problem below, the function myFunction and myFunction1 normally open the dropdown when clicking the button, but in the part of clicking outside and close, only the second event is working.
<script>
f...
I have the following code with Javascript
<script type="text/javascript">
$(function() {
$("#loginForm").submit(function(event) {
$("#success").css("display", "block"), $('#success').html("Autenticando...");
$('#...
How do I get all options (html and values) tags with jquery
<select id="test" name"algumName">
<option value="1">1</option>
<option value="2">2</option>
<optio...
Hello,
I'm trying to create a vehicle table that looks like this with php and mysql:
+----+-----------------+-------+--------+
| id | nome do veiculo | marca | codigo |
| 1 | Gol | VW | 1 |
| 2 | Golf | VW...
How do I make my input stay with the decimal places ....
I need it to format in #total_compra
follow code
<script type="text/javascript">
$(document).ready(function() {
$("#evento_quantidade").change(function() {
var qtd = $(this)...
Good evening!
I'm trying to make a select component that is used more than once inside another Parent component.
To create the "option" tags, I make a map inside the array that I created as a state of the Pai / App class.
So far, it wor...
Hello!
I'm doing a project for college in Ionic using angularJS and in it I have an arraylist with several words, using the orderBy I left them in alphabetical order, but there is a problem, I have to make every time the initial letter changes a...