I have the following each that returns all records of clients inside a table, and that works perfectly:
$.each(data, function(key,item)
{
id_cliente = item.id;
nome_cliente = item.nome;
data_nascimento_cliente = formataDataSQL(...
Good morning guys, I'm having a question, I've done a scrapbook and would like to add a picture to the post and display it as the messages are displayed.
My code is:
<!DOCTYPE html>
<html>
<head>
<meta chars...
I have the following structure:
var prop = new Array();
prop[0] = "margin : auto";
prop[1] = "padding : 5px";
prop[2] = "border : none";
...
$(elemento).css({
for(i=0; i< prop; i++) {
/*Aqui vão serem feitos os laços do for e vão...
I have a catalog that displays more than 400 products on the same page (it has to be this way) with two arrows showing the dimension (height and width) that takes the measurements of the image and applies an inline CSS with the same values, for...
I have jQuery below that is working very well.
Except for one detail:% of% of is not correct:
% is_% is lógica between one ideia and another is the same regardless of the quantity of tempo de transição . But,...
I have a button on a page that, when clicking it, performs the following code:
Note: Whenever I click on this button it reloads a php page with data in html, the jquery scripts.
But there comes a point where it loops in the jquery scripts sea...
In this code below I make a query in the address and it returns me some data so far everything is ok. What I wanted to know is?
If, like a customer, they enter an address in the United States
returns me an "Area Not Allowed" message
I want...
$( ".form-control" ).blur(function(){
calcular();
});
function calcular() {
var soma = 0;
$( ".form-control").each(function(indice, item){
var valor = parseFloat($(item).val());
console.log(valor);
if (!isNaN(...