I have the following code:
$('#abre-busca').click(function(event){
event.preventDefault();
$('#menu-principal-sub li').css({'opacity':0});
setTimeout(function(){
$('#menu-principal-sub li').css({'display':'none'});...
How do I get the lowest value and highest value of the array separately with javascript and jQuery?
var arr = ["885.9", "984.9", "444.9", "528.9", "528.9"];
The lowest value in this case is 444.9 and the highest 984.9.
I have this calculator that is not my own and works perfectly.
The problem is that when we multiply, the display shows asterisk and not x . I would like that when clicking to multiply, x appears in the display and not asterisks.
$(...
I have the following variable:
json_envio = JSON.stringify (obj);
The value of it is:
"{"usuario":
{"login":"gleyson",
"senha":"1"},
"razao_social":"INTELIDER",
"nome_fantasia":"INTELIDER LTDA",
"cpf_cnpj":"10999558000...
I've been researching this but I have not found a solution. I have for example a float: 2087500 , I want to leave it as follows $ 20,875.00
I found several methods of passing float to coin but everyone has a period (.) before the last two...
I am making a system where it loads the inputs according to the selection of select , but since they are dynamic it is not working, what I need is when I select as payment method check, the inputs that are loaded load the same infor...
Hello, I have an input where it serves as a search bar. When entering a name and pressing enter, a function is activated and performs the following function:
function verificaValor(){
var valor = $('#search').val();
switch (valor) {...
Someone could tell me why this command line is not working:
$("#marcas_select + #modelos_teste").css("background-color", "yellow");
Here is the complete code.
As everyone can see the purpose is to let the select_test model with the yellow b...
I have the following HTML code
<table>
<tr>
<td class="x">10</td>
<td class="x">10</td>
<td class="x">12</td>
<td class="x">18</td>
</tr>
</table>
Using jquery I can ge...